aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFrankie <frankie.pangilinan@consensys.net>2016-06-30 07:33:43 +0800
committerFrankie <frankie.pangilinan@consensys.net>2016-06-30 07:33:43 +0800
commit94768175bf7630e9f8fd590181cb7816fd0ece7d (patch)
tree6ebd27347cbb9110670a672284add801b433fdce /ui
parent0b3737edb49cb40a8d82cf3cd5491b8474247a8c (diff)
parent3ae479f5ac3a569eb3840f119148bc4db626a295 (diff)
downloadtangerine-wallet-browser-94768175bf7630e9f8fd590181cb7816fd0ece7d.tar.gz
tangerine-wallet-browser-94768175bf7630e9f8fd590181cb7816fd0ece7d.tar.zst
tangerine-wallet-browser-94768175bf7630e9f8fd590181cb7816fd0ece7d.zip
Merge branch 'master' into networkIndication
Diffstat (limited to 'ui')
-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'),
]),
])
-
+
)
}