diff options
Merge branch 'master' into CopyTxHash
Diffstat (limited to 'ui/app/components')
-rw-r--r-- | ui/app/components/pending-tx.js | 6 |
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'), ]), ]) - + ) } |