Skip to content

Commit 19a4d79

Browse files
authored
Merge pull request #2970 from r0hit-gupta/msft16
MSFT-16
2 parents 8052e39 + 67f3fff commit 19a4d79

File tree

2 files changed

+4
-1
lines changed
  • __tests__/shared/components/TopcoderHeader/__snapshots__
  • src/shared/components/TopcoderHeader

2 files changed

+4
-1
lines changed

__tests__/shared/components/TopcoderHeader/__snapshots__/index.jsx.snap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ exports[`Default render 1`] = `
99
className="src-shared-components-TopcoderHeader-___style__main-desktop-header___oqm_l"
1010
>
1111
<a
12+
aria-label="Topcoder Homepage"
1213
className="src-shared-components-TopcoderHeader-___style__logo___2WLJ0"
1314
href="https://www.topcoder-dev.com"
1415
>
@@ -284,6 +285,7 @@ exports[`Render with open menu 1`] = `
284285
className="src-shared-components-TopcoderHeader-___style__main-desktop-header___oqm_l"
285286
>
286287
<a
288+
aria-label="Topcoder Homepage"
287289
className="src-shared-components-TopcoderHeader-___style__logo___2WLJ0"
288290
href="https://www.topcoder-dev.com"
289291
>
@@ -570,6 +572,7 @@ exports[`Render with specified profile 1`] = `
570572
className="src-shared-components-TopcoderHeader-___style__main-desktop-header___oqm_l"
571573
>
572574
<a
575+
aria-label="Topcoder Homepage"
573576
className="src-shared-components-TopcoderHeader-___style__logo___2WLJ0"
574577
href="https://www.topcoder-dev.com"
575578
>

src/shared/components/TopcoderHeader/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ export default class TopcoderHeader extends React.Component {
348348
}}
349349
>
350350
<div styleName="main-desktop-header">
351-
<a href={BASE_URL} styleName="logo">
351+
<a href={BASE_URL} styleName="logo" aria-label="Topcoder Homepage">
352352
<LogoTopcoderWithName height={53} width={135} />
353353
</a>
354354
<ul styleName="main-menu" ref={(ul) => { this.mainMenu = ul; }}>

0 commit comments

Comments
 (0)