diff options
author | Dan <danjm.com@gmail.com> | 2017-09-06 20:39:58 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-08 01:26:21 +0800 |
commit | 1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe (patch) | |
tree | b4a147e2fa6764310c2b085666bacb4014de9303 /ui | |
parent | b8b0c8c62a138351277b1db0dadb7ede512da2bc (diff) | |
download | tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.tar tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.tar.gz tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.tar.bz2 tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.tar.lz tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.tar.xz tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.tar.zst tangerine-wallet-browser-1d5a725ffbcd0fe3123d3bbb5889abce99cbaabe.zip |
Close button in account-details-modal working.
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/modals/account-details-modal.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/modals/account-details-modal.js b/ui/app/components/modals/account-details-modal.js index fb0e70397..838000fed 100644 --- a/ui/app/components/modals/account-details-modal.js +++ b/ui/app/components/modals/account-details-modal.js @@ -57,7 +57,9 @@ AccountDetailsModal.prototype.render = function () { ]), - h('div.account-details-modal-close', {}), + h('div.account-details-modal-close', { + onClick: this.props.hideModal, + }), h(QrView, { Qr: { |