From 3ae479f5ac3a569eb3840f119148bc4db626a295 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 29 Jun 2016 15:44:37 -0700 Subject: Unify wording for transaction options (#369) * Unify wording for transaction options. * Modify changelog. * Fix wording and spacing. --- ui/app/components/pending-tx.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ui') 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'), ]), ]) - + ) } -- cgit