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

Adjust copy in send token confirmation screen

This commit is contained in:
sdtsui 2017-07-29 23:11:11 -07:00
parent 9373ba9f38
commit 97cb25c9f1

View File

@ -371,7 +371,7 @@ PendingTx.prototype.render = function () {
// Accept Button // Accept Button
h('input.confirm.btn-green', { h('input.confirm.btn-green', {
type: 'submit', type: 'submit',
value: 'SUBMIT', value: 'CONFIRM',
style: { style: {
marginTop: '8px', marginTop: '8px',
width: '8em', width: '8em',
@ -393,7 +393,7 @@ PendingTx.prototype.render = function () {
width: '8em', width: '8em',
}, },
onClick: props.cancelTransaction, onClick: props.cancelTransaction,
}, 'Reject'), }, 'CANCEL'),
]), ]),
]) // end of minwidth wrapper ]) // end of minwidth wrapper
) )