aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/account-detail.js
diff options
context:
space:
mode:
authorkumavis <aaron@kumavis.me>2016-05-14 07:33:41 +0800
committerkumavis <aaron@kumavis.me>2016-05-14 07:33:41 +0800
commitb55a3295323ae4b89901ea55678e02074148e981 (patch)
tree00abbd2a893a5de811acee7a6fc04d9355b17879 /ui/app/account-detail.js
parentb8ad7f2cb141e0888505109d8a5a44b93efc19a3 (diff)
downloadtangerine-wallet-browser-b55a3295323ae4b89901ea55678e02074148e981.tar.gz
tangerine-wallet-browser-b55a3295323ae4b89901ea55678e02074148e981.tar.zst
tangerine-wallet-browser-b55a3295323ae4b89901ea55678e02074148e981.zip
ui - copy address fix
Diffstat (limited to 'ui/app/account-detail.js')
-rw-r--r--ui/app/account-detail.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/account-detail.js b/ui/app/account-detail.js
index 663014293..00d40a9ee 100644
--- a/ui/app/account-detail.js
+++ b/ui/app/account-detail.js
@@ -102,7 +102,7 @@ AccountDetailScreen.prototype.render = function() {
}, addressSummary(selected)),
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', {
@@ -110,7 +110,7 @@ AccountDetailScreen.prototype.render = function() {
}),
h('i.fa.fa-clipboard.fa-md.cursor-pointer.color-orange', {
- onClick: () => copyToClipboard(account.address),
+ onClick: () => copyToClipboard(selected),
}),
]),