diff options
-rw-r--r-- | ui/app/components/pending-tx.js | 2 | ||||
-rw-r--r-- | ui/app/send.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index 69dd2107a..99769e4e6 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -307,7 +307,7 @@ PendingTx.prototype.render = function () { ]), h('form#pending-tx-form.flex-column.flex-center', { - // onSubmit: this.onSubmit, + onSubmit: this.onSubmit, }, [ // Reset Button // h('button', { diff --git a/ui/app/send.js b/ui/app/send.js index 8969e5fa3..ad749efe7 100644 --- a/ui/app/send.js +++ b/ui/app/send.js @@ -241,7 +241,7 @@ SendTransactionScreen.prototype.render = function () { ]), h('input.large-input.send-screen-input', { - placeholder: `0 ${currentCurrency}`, + placeholder: `0 ${activeCurrency}`, type: 'number', onChange: (event) => { this.setState({ |