Skip to content

Commit

Permalink
Merge pull request #17 from w3f-webops/fix/link-props
Browse files Browse the repository at this point in the history
Fix/link props
  • Loading branch information
4www authored Mar 9, 2022
2 parents 285ace5 + 63be866 commit c54bf01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gatsby-theme-w3f/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@w3f/gatsby-theme-w3f",
"private": false,
"description": "w3f gatsby theme",
"version": "0.0.15",
"version": "0.0.16",
"author": "W3F <[email protected]>",
"keywords": [
"gatsby"
Expand Down
2 changes: 1 addition & 1 deletion gatsby-theme-w3f/src/components/default/Link.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const Link = ({ to, title, children, ...other }) => {
const external = testExternalLink(to);
if (external) {
return (
<a href={to} title={title} target="_blank" rel="noreferrer noopener">
<a href={to} title={title} target="_blank" rel="noreferrer noopener" {...other}>
{children}
</a>
);
Expand Down

0 comments on commit c54bf01

Please sign in to comment.