aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ui/app/components/pending-tx-details.js19
1 files changed, 4 insertions, 15 deletions
diff --git a/ui/app/components/pending-tx-details.js b/ui/app/components/pending-tx-details.js
index a9172d4ad..040fc2f34 100644
--- a/ui/app/components/pending-tx-details.js
+++ b/ui/app/components/pending-tx-details.js
@@ -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,
+ ]),