Skip to content

Commit

Permalink
Add missing attribute to Gists tab (refined-github#952)
Browse files Browse the repository at this point in the history
  • Loading branch information
fregante authored Jan 12, 2018
1 parent 4251e3c commit 1caeacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/features/add-gists-link-to-profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async () => {

const username = getCleanPathname();
const href = isEnterprise() ? `/gist/${username}` : `https://gist.github.com/${username}`;
const link = <a href={href} class="UnderlineNav-item rgh-user-gist" role="tab">Gists </a>;
const link = <a href={href} class="UnderlineNav-item rgh-user-gist" role="tab" aria-selected="false">Gists </a>;
container.append(link);

const userData = await api(`users/${username}`);
Expand Down

0 comments on commit 1caeacd

Please sign in to comment.