mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
Remove advanced options for now.
This commit is contained in:
parent
39c824f2f3
commit
d21915c605
@ -109,17 +109,6 @@ PTXP.render = function () {
|
||||
|
||||
h('.table-box', [
|
||||
|
||||
h('.row', [
|
||||
h('.cell.label', 'Advanced Options'),
|
||||
h('input', {
|
||||
type: 'checkbox',
|
||||
selected: advanced,
|
||||
onChange: () => {
|
||||
this.setState({advanced: !advanced})
|
||||
},
|
||||
}),
|
||||
]),
|
||||
|
||||
// Ether Value
|
||||
// Currently not customizable, but easily modified
|
||||
// in the way that gas and gasLimit currently are.
|
||||
@ -129,7 +118,7 @@ PTXP.render = function () {
|
||||
]),
|
||||
|
||||
// Gas Limit (customizable)
|
||||
advanced ? h('.cell.row', [
|
||||
h('.cell.row', [
|
||||
h('.cell.label', 'Gas Limit'),
|
||||
h('.cell.value', {
|
||||
}, [
|
||||
@ -146,10 +135,10 @@ PTXP.render = function () {
|
||||
},
|
||||
}),
|
||||
]),
|
||||
]) : null,
|
||||
]),
|
||||
|
||||
// Gas Price (customizable)
|
||||
advanced ? h('.cell.row', [
|
||||
h('.cell.row', [
|
||||
h('.cell.label', 'Gas Price'),
|
||||
h('.cell.value', {
|
||||
}, [
|
||||
@ -166,7 +155,7 @@ PTXP.render = function () {
|
||||
},
|
||||
}),
|
||||
]),
|
||||
]) : null,
|
||||
]),
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user