Skip to content

Commit

Permalink
Merge pull request #915 from DTS-STN/update-header-lang
Browse files Browse the repository at this point in the history
fix: move lang attribute to html a
  • Loading branch information
shawn320 authored Jul 10, 2023
2 parents 2a69eb3 + 84fe142 commit 50af627
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Link/Link.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ export function Link(props) {
<Component
href={props.href}
disabled={props.disabled}
lang={props.lang}
target={props.target}
aria-label={props.ariaLabel || props.text}
locale={props.locale}
role="link"
>
<a
href={props.href}
lang={props.lang}
onClick={props.onClick ? props.onClick : undefined}
id={props.id}
className={`${basicStyle}`}
Expand Down

0 comments on commit 50af627

Please sign in to comment.