Browse Source

Fix unwritable gas limit field

master
Thibaut Boustany 7 years ago
parent
commit
f22a6f43e8
No known key found for this signature in database GPG Key ID: 32475B11A2B13EEC
  1. 2
      src/bridge/EthereumJSBridge.js

2
src/bridge/EthereumJSBridge.js

@ -37,7 +37,7 @@ const EditFees = ({ account, onChange, value }: EditProps<Transaction>) => (
const EditAdvancedOptions = ({ onChange, value }: EditProps<Transaction>) => ( const EditAdvancedOptions = ({ onChange, value }: EditProps<Transaction>) => (
<AdvancedOptions <AdvancedOptions
gasLimit={value.gasLimit} gasLimit={value.gasLimit}
onChange={gasLimit => { onChangeGasLimit={gasLimit => {
onChange({ ...value, gasLimit }) onChange({ ...value, gasLimit })
}} }}
/> />

Loading…
Cancel
Save