mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
[WIP] Isolate form logic from rest of confirmation UI
This commit is contained in:
parent
8ace4710ff
commit
35ff4c195c
@ -75,11 +75,8 @@ PendingTx.prototype.render = function () {
|
||||
key: txMeta.id,
|
||||
}, [
|
||||
|
||||
h('form#pending-tx-form', {
|
||||
onSubmit: this.onSubmit.bind(this),
|
||||
|
||||
h('div', {
|
||||
}, [
|
||||
|
||||
// tx info
|
||||
h('div', [
|
||||
|
||||
@ -305,6 +302,11 @@ PendingTx.prototype.render = function () {
|
||||
}, 'Buy Ether')
|
||||
: null,
|
||||
|
||||
|
||||
h('form#pending-tx-form', {
|
||||
onSubmit: this.onSubmit.bind(this),
|
||||
}, [
|
||||
// Reset Button
|
||||
h('button', {
|
||||
onClick: (event) => {
|
||||
this.resetGasFields()
|
||||
@ -320,10 +322,13 @@ PendingTx.prototype.render = function () {
|
||||
disabled: insufficientBalance || !this.state.valid || !isValidAddress || this.state.submitting,
|
||||
}),
|
||||
|
||||
// Cancel Button
|
||||
h('button.cancel.btn-red', {
|
||||
onClick: props.cancelTransaction,
|
||||
}, 'Reject'),
|
||||
]),
|
||||
|
||||
]),
|
||||
]),
|
||||
])
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user