Skip to content

Commit

Permalink
Merge pull request #50 from daniel-beck/jenkins.io-urls
Browse files Browse the repository at this point in the history
[WEBSITE-378] Show link to wiki page for jenkins.io URLs
  • Loading branch information
daniel-beck authored Mar 6, 2018
2 parents 046c22a + bbff2fe commit d6445e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/PluginDetail.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ class PluginDetail extends React.PureComponent {
}

showWikiUrl(url) {
return url && url.startsWith("https://wiki.jenkins-ci.org");
return url && (url.startsWith("https://wiki.jenkins-ci.org") || url.startsWith("https://wiki.jenkins.io"));
}

showWarnings = () => {
Expand Down

0 comments on commit d6445e5

Please sign in to comment.