Skip to content

Commit c54bf01

Browse files
authored
Merge pull request #17 from w3f-webops/fix/link-props
Fix/link props
2 parents 285ace5 + 63be866 commit c54bf01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gatsby-theme-w3f/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@w3f/gatsby-theme-w3f",
33
"private": false,
44
"description": "w3f gatsby theme",
5-
"version": "0.0.15",
5+
"version": "0.0.16",
66
"author": "W3F <[email protected]>",
77
"keywords": [
88
"gatsby"

gatsby-theme-w3f/src/components/default/Link.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const Link = ({ to, title, children, ...other }) => {
55
const external = testExternalLink(to);
66
if (external) {
77
return (
8-
<a href={to} title={title} target="_blank" rel="noreferrer noopener">
8+
<a href={to} title={title} target="_blank" rel="noreferrer noopener" {...other}>
99
{children}
1010
</a>
1111
);

0 commit comments

Comments
 (0)