Skip to content

Commit

Permalink
(fix) propriété de trop supprimée dans le target du in-page-link
Browse files Browse the repository at this point in the history
  • Loading branch information
mamarmite committed Jul 23, 2024
1 parent ffd061e commit 54ab459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/Components/InPageLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const InPageLink = (props) => {
<a className={`in-page-link ${props.className ?? ''}`} href={link} name={`${props.name}`}>
{showIcon && <Icon iconName={"share"} className={"text-decoration-none ps-1"}/>}
</a>
{showTarget && <span iconName={"share"} className={"in-page-link-target"}>&nbsp;</span>}
{showTarget && <span className={"in-page-link-target"}>&nbsp;</span>}
</div>
)
}
Expand Down

0 comments on commit 54ab459

Please sign in to comment.