1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-22 17:33:23 +01:00

ui - copy address fix

This commit is contained in:
kumavis 2016-05-13 16:33:41 -07:00
parent b8ad7f2cb1
commit b55a329532

View File

@ -102,7 +102,7 @@ AccountDetailScreen.prototype.render = function() {
}, addressSummary(selected)), }, addressSummary(selected)),
h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', { h('i.fa.fa-download.fa-md.cursor-pointer.color-orange', {
onClick: () => this.requestAccountExport(account.address), onClick: () => this.requestAccountExport(selected),
}), }),
h('i.fa.fa-qrcode.fa-md.cursor-disabled.color-orange', { h('i.fa.fa-qrcode.fa-md.cursor-disabled.color-orange', {
@ -110,7 +110,7 @@ AccountDetailScreen.prototype.render = function() {
}), }),
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', { h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
onClick: () => copyToClipboard(account.address), onClick: () => copyToClipboard(selected),
}), }),
]), ]),