aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/modals/new-account-modal.js2
-rw-r--r--ui/app/components/tx-view.js4
2 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/components/modals/new-account-modal.js b/ui/app/components/modals/new-account-modal.js
index 15341a2e9..90a3b7c99 100644
--- a/ui/app/components/modals/new-account-modal.js
+++ b/ui/app/components/modals/new-account-modal.js
@@ -18,7 +18,7 @@ function mapDispatchToProps (dispatch) {
},
hideModal: () => {
dispatch(actions.hideModal())
- }
+ },
}
}
diff --git a/ui/app/components/tx-view.js b/ui/app/components/tx-view.js
index 265893104..dbbf07710 100644
--- a/ui/app/components/tx-view.js
+++ b/ui/app/components/tx-view.js
@@ -36,6 +36,7 @@ function mapDispatchToProps (dispatch) {
showSidebar: () => { dispatch(actions.showSidebar()) },
hideSidebar: () => { dispatch(actions.hideSidebar()) },
showModal: (payload) => { dispatch(actions.showModal(payload)) },
+ showSendPage: () => { dispatch(actions.showSendPage()) },
}
}
@@ -115,6 +116,9 @@ TxView.prototype.render = function () {
textAlign: 'center',
marginLeft: '1.4em',
},
+ onClick: () => {
+ this.props.showSendPage()
+ },
}, 'SEND'),
]),