diff options
author | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-19 07:09:01 +0800 |
---|---|---|
committer | Kevin Serrano <kevin.serrano@consensys.net> | 2017-09-19 07:09:01 +0800 |
commit | bd8428e9ed3e1fb386620def0739720aa8985299 (patch) | |
tree | d2aefb2c29754360b53c346dfd9e7f98b6a86435 /ui/app/config.js | |
parent | 51cebcc1733e6ac2b1d7fa8841eb937c979cd074 (diff) | |
download | tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.tar tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.tar.gz tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.tar.bz2 tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.tar.lz tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.tar.xz tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.tar.zst tangerine-wallet-browser-bd8428e9ed3e1fb386620def0739720aa8985299.zip |
Comply with current currency API and add additional styling.
Diffstat (limited to 'ui/app/config.js')
-rw-r--r-- | ui/app/config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/config.js b/ui/app/config.js index fbd38c7f4..0fe232c07 100644 --- a/ui/app/config.js +++ b/ui/app/config.js @@ -170,7 +170,7 @@ function currentConversionInformation (metamaskState, state) { }, defaultValue: currentCurrency, }, infuraCurrencies.map((currency) => { - return h('option', {key: currency.symbol, value: currency.symbol}, `${currency.quote.code.toUpperCase()} - ${currency.quote.name}`) + return h('option', {key: currency.quote.code, value: currency.quote.code}, `${currency.quote.code.toUpperCase()} - ${currency.quote.name}`) }) ), ]) |