diff options
author | frankiebee <frankie.diamond@gmail.com> | 2017-06-30 03:06:22 +0800 |
---|---|---|
committer | frankiebee <frankie.diamond@gmail.com> | 2017-06-30 03:06:22 +0800 |
commit | 5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec (patch) | |
tree | 5c565f05736af5b6cdbdb5fef9f9a96a7b588174 | |
parent | f36e69f3405484db9586bb97427fa40dc4182d45 (diff) | |
download | tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.tar tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.tar.gz tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.tar.bz2 tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.tar.lz tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.tar.xz tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.tar.zst tangerine-wallet-browser-5e8b4e3226a4b084c418c7ed709d4e0f34ab24ec.zip |
change “ACCEPT” to “SUBMIT”
-rw-r--r-- | ui/app/components/pending-tx.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index f33a5d948..d7d602f31 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -315,7 +315,7 @@ PendingTx.prototype.render = function () { // Accept Button h('input.confirm.btn-green', { type: 'submit', - value: 'ACCEPT', + value: 'SUBMIT', style: { marginLeft: '10px' }, disabled: insufficientBalance || !this.state.valid || !isValidAddress || this.state.submitting, }), |