From 18cf63573569fc63c45e0d0ea309bdd0e2e8a93b Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Mon, 31 Oct 2016 09:30:22 -0700 Subject: [PATCH] Fix github link on info page --- CHANGELOG.md | 2 ++ ui/app/info.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c6a06788..73fde7504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Current Master +- Fix github link on info page to point at current repository. + ## 2.13.6 2016-10-26 - Add a check for improper Transaction data. diff --git a/ui/app/info.js b/ui/app/info.js index 9eb2c2e98..cc753b2ea 100644 --- a/ui/app/info.js +++ b/ui/app/info.js @@ -145,7 +145,7 @@ InfoScreen.prototype.render = function () { h('div.fa.fa-github', [ h('a.info', { - href: 'https://github.com/metamask/talk/issues', + href: 'https://github.com/MetaMask/metamask-plugin/issues', target: '_blank', onClick (event) { this.navigateTo(event.target.href) }, }, 'Start a thread on GitHub'),