aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/send/currency-display.js
diff options
context:
space:
mode:
authorWhymarrh Whitby <whymarrh.whitby@gmail.com>2018-06-21 03:04:44 +0800
committerGitHub <noreply@github.com>2018-06-21 03:04:44 +0800
commit41a48195ad76c268cfadc637a451ebe0281f058f (patch)
tree7de308df3c71d68eb500b5693e43555b79119eb4 /ui/app/components/send/currency-display.js
parent40fad619088bd955d5505cc839a7521ac43235f9 (diff)
parent1509a4393a241eb18be6702a913f2041818b2972 (diff)
downloadtangerine-wallet-browser-41a48195ad76c268cfadc637a451ebe0281f058f.tar.gz
tangerine-wallet-browser-41a48195ad76c268cfadc637a451ebe0281f058f.tar.zst
tangerine-wallet-browser-41a48195ad76c268cfadc637a451ebe0281f058f.zip
Merge pull request #4575 from whymarrh/token-amount-overflow
Handle token amount overflows
Diffstat (limited to 'ui/app/components/send/currency-display.js')
-rw-r--r--ui/app/components/send/currency-display.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/send/currency-display.js b/ui/app/components/send/currency-display.js
index e410bc070..9c8ce0044 100644
--- a/ui/app/components/send/currency-display.js
+++ b/ui/app/components/send/currency-display.js
@@ -149,7 +149,7 @@ CurrencyDisplay.prototype.render = function () {
} : {}),
ref: input => { this.currencyInput = input },
style: {
- width: this.getInputWidth(valueToRender, readOnly),
+ minWidth: this.getInputWidth(valueToRender, readOnly),
},
min: 0,
}),