aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components
diff options
context:
space:
mode:
authorDan J Miller <danjm.com@gmail.com>2018-01-18 12:47:01 +0800
committerAlexander Tseung <alextsg@users.noreply.github.com>2018-01-18 12:47:01 +0800
commit4fae461a672b89a16c496d09321f11f86b873e32 (patch)
tree223221d5fda91deded04e7eb3cbdc40f5eb3f29a /ui/app/components
parentfdaf6eacb2dc6cbd6941dd7debdd5cd89fca4672 (diff)
downloadtangerine-wallet-browser-4fae461a672b89a16c496d09321f11f86b873e32.tar.gz
tangerine-wallet-browser-4fae461a672b89a16c496d09321f11f86b873e32.tar.zst
tangerine-wallet-browser-4fae461a672b89a16c496d09321f11f86b873e32.zip
[NewUI] Send screen gas loading fixes (#3027)
* Allow entering amount, but disable validation of amount, opening of gas customizer or clicking of next, when gas loading in send. * Fix variable name.
Diffstat (limited to 'ui/app/components')
-rw-r--r--ui/app/components/send/gas-fee-display-v2.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/app/components/send/gas-fee-display-v2.js b/ui/app/components/send/gas-fee-display-v2.js
index 806c33f0a..0c4c3f7a9 100644
--- a/ui/app/components/send/gas-fee-display-v2.js
+++ b/ui/app/components/send/gas-fee-display-v2.js
@@ -32,8 +32,9 @@ GasFeeDisplay.prototype.render = function () {
})
: h('div.currency-display', 'Loading...'),
- h('div.send-v2__sliders-icon-container', {
+ h('button.send-v2__sliders-icon-container', {
onClick,
+ disabled: !gasTotal,
}, [
h('i.fa.fa-sliders.send-v2__sliders-icon'),
]),