mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
Focus amount input when click anywhere in amount field container
This commit is contained in:
parent
5a0126f17b
commit
a33ced3994
@ -76,6 +76,7 @@ CurrencyInput.prototype.render = function () {
|
||||
className,
|
||||
placeholder,
|
||||
readOnly,
|
||||
inputRef,
|
||||
} = this.props
|
||||
|
||||
const inputSizeMultiplier = readOnly ? 1 : 1.2
|
||||
@ -89,5 +90,6 @@ CurrencyInput.prototype.render = function () {
|
||||
size: valueToRender.length * inputSizeMultiplier,
|
||||
readOnly,
|
||||
onChange: e => this.handleChange(e.target.value),
|
||||
ref: inputRef,
|
||||
})
|
||||
}
|
||||
|
@ -82,6 +82,7 @@ CurrencyDisplay.prototype.render = function () {
|
||||
style: {
|
||||
borderColor: inError ? 'red' : null,
|
||||
},
|
||||
onClick: () => this.currencyInput.focus(),
|
||||
}, [
|
||||
|
||||
h('div.currency-display__primary-row', [
|
||||
@ -96,6 +97,7 @@ CurrencyDisplay.prototype.render = function () {
|
||||
onInputChange: newValue => {
|
||||
handleChange(this.getAmount(newValue))
|
||||
},
|
||||
inputRef: input => { this.currencyInput = input; },
|
||||
}),
|
||||
|
||||
h('span.currency-display__currency-symbol', primaryCurrency),
|
||||
|
Loading…
Reference in New Issue
Block a user