diff options
author | Dan <danjm.com@gmail.com> | 2018-06-01 02:09:24 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-06-01 02:09:24 +0800 |
commit | 701611e317d120d2c0530e4794bd498a74e233b2 (patch) | |
tree | 4ec098d593de7ff5fe20907a48c56061cc14de54 /ui/app/components/input-number.js | |
parent | 1bde2892ec222cec1ba3265d50ed59f665afbf83 (diff) | |
parent | 2ca084b0557242b34733107701a14ba0724363b3 (diff) | |
download | tangerine-wallet-browser-701611e317d120d2c0530e4794bd498a74e233b2.tar.gz tangerine-wallet-browser-701611e317d120d2c0530e4794bd498a74e233b2.tar.zst tangerine-wallet-browser-701611e317d120d2c0530e4794bd498a74e233b2.zip |
Merge branch 'i3725-refactor-send-component-' into i3914-fix-newui-send-gas-estimation
Diffstat (limited to 'ui/app/components/input-number.js')
-rw-r--r-- | ui/app/components/input-number.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ui/app/components/input-number.js b/ui/app/components/input-number.js index 5600e35ee..de5fcca54 100644 --- a/ui/app/components/input-number.js +++ b/ui/app/components/input-number.js @@ -1,7 +1,6 @@ const Component = require('react').Component const h = require('react-hyperscript') const inherits = require('util').inherits -const CurrencyInput = require('./currency-input') const { addCurrencies, conversionGTE, @@ -51,14 +50,15 @@ InputNumber.prototype.render = function () { const { unitLabel, step = 1, placeholder, value = 0 } = this.props return h('div.customize-gas-input-wrapper', {}, [ - h(CurrencyInput, { + h('input', { className: 'customize-gas-input', value, placeholder, type: 'number', - onInputChange: newValue => { - this.setValue(newValue) + onChange: e => { + this.setValue(e.target.value) }, + min: 0, }), h('span.gas-tooltip-input-detail', {}, [unitLabel]), h('div.gas-tooltip-input-arrows', {}, [ |