Skip to content

Commit a494912

Browse files
authored
Merge pull request #1288 from ZelnickB/master
Add "me" keyword to certain links
2 parents 866c59f + 82d1684 commit a494912

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

layout/widget/profile.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class Profile extends Component {
1010
return <div class="level is-mobile is-multiline">
1111
{links.filter(link => typeof link === 'object').map(link => {
1212
return <a class="level-item button is-transparent is-marginless"
13-
target="_blank" rel="noopener" title={link.name} href={link.url}>
13+
target="_blank" rel="me noopener" title={link.name} href={link.url}>
1414
{'icon' in link ? <i class={link.icon}></i> : link.name}
1515
</a>;
1616
})}
@@ -73,7 +73,7 @@ class Profile extends Component {
7373
</div>
7474
</nav>
7575
{followLink ? <div class="level">
76-
<a class="level-item button is-primary is-rounded" href={followLink} target="_blank" rel="noopener">{followTitle}</a>
76+
<a class="level-item button is-primary is-rounded" href={followLink} target="_blank" rel="me noopener">{followTitle}</a>
7777
</div> : null}
7878
{socialLinks ? this.renderSocialLinks(socialLinks) : null}
7979
</div>

0 commit comments

Comments
 (0)