aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
authorsdtsui <szehungdanieltsui@gmail.com>2017-08-21 19:53:30 +0800
committersdtsui <szehungdanieltsui@gmail.com>2017-08-21 19:53:39 +0800
commit3fa7c5dc0814bce907c7adbd6e39e1759186120c (patch)
treed2cf274ca67d5eac37efca643817c611c1b5fa0d /ui/app
parentc2636143c3c3f297c8b00e407596841908376331 (diff)
downloadtangerine-wallet-browser-3fa7c5dc0814bce907c7adbd6e39e1759186120c.tar.gz
tangerine-wallet-browser-3fa7c5dc0814bce907c7adbd6e39e1759186120c.tar.zst
tangerine-wallet-browser-3fa7c5dc0814bce907c7adbd6e39e1759186120c.zip
Hook up hideModal action to close icon in EditAccountNameModal
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/modals/edit-account-name-modal.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/components/modals/edit-account-name-modal.js b/ui/app/components/modals/edit-account-name-modal.js
index 0128fe412..cff8b2a58 100644
--- a/ui/app/components/modals/edit-account-name-modal.js
+++ b/ui/app/components/modals/edit-account-name-modal.js
@@ -43,7 +43,11 @@ EditAccountNameModal.prototype.render = function () {
h('div.flex-column.edit-account-name-modal-content', {
}, [
- h('div.edit-account-name-modal-cancel', {}, [
+ h('div.edit-account-name-modal-cancel', {
+ onClick: () => {
+ hideModal()
+ },
+ }, [
h('i.fa.fa-times'),
]),