From 3cd502a1639187230ef7dedd798dee6639d68143 Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Thu, 7 Jul 2016 13:22:38 -0700 Subject: Restore button naming consistency --- ui/app/components/pending-tx.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/app/components/pending-tx.js') diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js index dce933df1..1feedbbbc 100644 --- a/ui/app/components/pending-tx.js +++ b/ui/app/components/pending-tx.js @@ -42,12 +42,12 @@ PendingTx.prototype.render = function () { h('button.confirm', { onClick: state.sendTransaction, style: { background: 'rgb(251,117,1)' }, - }, 'Confirm'), + }, 'Accept'), h('button.cancel', { onClick: state.cancelTransaction, style: { background: 'rgb(254,35,17)' }, - }, 'Cancel'), + }, 'Reject'), ]), ]) ) -- cgit