diff options
author | Chi Kei Chan <chikeichan@gmail.com> | 2017-11-03 06:20:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-03 06:20:29 +0800 |
commit | 9f70762434deb1c973665a76623838289e655f22 (patch) | |
tree | 738fccaff1c153c72aea0d0699ddfec0b4c097c7 /ui/app/components/send/gas-fee-display-v2.js | |
parent | dc0b3255cf908320b5b46f02765ea03b5b4db6b7 (diff) | |
parent | acc973d543ac65f8db980c0007c248c509345411 (diff) | |
download | dexon-wallet-9f70762434deb1c973665a76623838289e655f22.tar.gz dexon-wallet-9f70762434deb1c973665a76623838289e655f22.tar.zst dexon-wallet-9f70762434deb1c973665a76623838289e655f22.zip |
Merge pull request #2530 from MetaMask/uat
Merge uat into NewUI-flat
Diffstat (limited to 'ui/app/components/send/gas-fee-display-v2.js')
-rw-r--r-- | ui/app/components/send/gas-fee-display-v2.js | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ui/app/components/send/gas-fee-display-v2.js b/ui/app/components/send/gas-fee-display-v2.js index 0e23b63a..806c33f0 100644 --- a/ui/app/components/send/gas-fee-display-v2.js +++ b/ui/app/components/send/gas-fee-display-v2.js @@ -23,21 +23,20 @@ GasFeeDisplay.prototype.render = function () { gasTotal ? h(CurrencyDisplay, { - primaryCurrency: 'ETH', + primaryCurrency, convertedCurrency, value: gasTotal, conversionRate, convertedPrefix: '$', readOnly: true, }) - : h('div.currency-display', 'Loading...') - , + : h('div.currency-display', 'Loading...'), h('div.send-v2__sliders-icon-container', { onClick, }, [ h('i.fa.fa-sliders.send-v2__sliders-icon'), - ]) + ]), ]) } |