Skip to content

Commit 6f95398

Browse files
Fix link to PRs in contributors list (#272)
1 parent b6f1318 commit 6f95398

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/contributors-list.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export default class ContributorsList extends React.Component {
6464
<td>
6565
<ul>
6666
{st.substantiveContributors[i].prs.map((pr) => {
67-
return <li key={pr}><a href={`https://www.w3.org/${st.owner}/${st.shortName}/pull/${pr}`}>PR #{pr}</a></li>
67+
return <li key={pr}><a href={`https://github.com/${st.owner}/${st.shortName}/pull/${pr}`}>PR #{pr}</a></li>
6868
})}
6969
</ul>
7070
</td>

0 commit comments

Comments
 (0)