diff options
New account modal top right close button working.
Diffstat (limited to 'ui/app/components/modals')
-rw-r--r-- | ui/app/components/modals/new-account-modal.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/modals/new-account-modal.js b/ui/app/components/modals/new-account-modal.js index 80c70c47f..8d67762ac 100644 --- a/ui/app/components/modals/new-account-modal.js +++ b/ui/app/components/modals/new-account-modal.js @@ -37,7 +37,9 @@ NewAccountModal.prototype.render = function () { 'New Account', ]), - h('div.modal-close-x', {}), + h('div.modal-close-x', { + onClick: this.props.hideModal, + }), h('div.new-account-modal-content', {}, [ 'Account Name', |