1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Restore button naming consistency

This commit is contained in:
Dan Finlay 2016-07-07 13:22:38 -07:00
parent e8efe84320
commit 3cd502a163

View File

@ -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'),
]),
])
)