aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorKevin Serrano <kevgagser@gmail.com>2016-06-30 06:44:37 +0800
committerDan Finlay <somniac@me.com>2016-06-30 06:44:37 +0800
commit3ae479f5ac3a569eb3840f119148bc4db626a295 (patch)
treeeb8857e833cca95a311f50d31e6f90dc8ebd33ba /ui/app/components
parent757a3ce6beed9519005c6d6b2aa439d849173b29 (diff)
downloadtangerine-wallet-browser-3ae479f5ac3a569eb3840f119148bc4db626a295.tar.gz
tangerine-wallet-browser-3ae479f5ac3a569eb3840f119148bc4db626a295.tar.zst
tangerine-wallet-browser-3ae479f5ac3a569eb3840f119148bc4db626a295.zip
Unify wording for transaction options (#369)
* Unify wording for transaction options. * Modify changelog. * Fix wording and spacing.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/pending-tx.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js
index 197e0436c..5d1fd4c16 100644
--- a/ui/app/components/pending-tx.js
+++ b/ui/app/components/pending-tx.js
@@ -36,14 +36,14 @@ PendingTx.prototype.render = function () {
h('.flex-row.flex-space-around', [
h('button', {
onClick: state.cancelTransaction,
- }, 'Cancel'),
+ }, 'Reject'),
h('button', {
onClick: state.sendTransaction,
- }, 'Send'),
+ }, 'Approve'),
]),
])
-
+
)
}