Browse Source

vote icon, helpers update

v0.25
pbca26 7 years ago
parent
commit
6ce1a582c6
  1. BIN
      react/src/assets/images/cryptologo/vote.png
  2. 3
      react/src/components/addcoin/addcoinOptionsAC.js
  3. 1
      react/src/translate/en.js
  4. 4
      react/src/util/coinHelper.js

BIN
react/src/assets/images/cryptologo/vote.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

3
react/src/components/addcoin/addcoinOptionsAC.js

@ -24,7 +24,8 @@ const addCoinOptionsAC = () => {
'etomic',
'btch',
'beer',
'pizza'
'pizza',
'vote'
];
let _items = [];

1
react/src/translate/en.js

@ -847,6 +847,7 @@ export const LANG_EN = {
'BTCH': 'BTCH (BTCH)',
'BEER': 'BEER (Test coin)',
'PIZZA': 'PIZZA (Test coin)',
'VOTE': 'VOTE (Notary Elections)',
},
'DEX': {
'GEN_NEW_PASSPHRASE': 'Generate a new passphrase',

4
react/src/util/coinHelper.js

@ -6,6 +6,10 @@ export function getCoinTitle(coin) {
let hideTitle = false;
switch (coin) {
case 'VOTE':
coinlogo = 'vote';
coinname = 'VOTE (Notary Elections)';
break;
case 'GRS':
coinlogo = 'grs';
coinname = 'Groestlcoin';

Loading…
Cancel
Save