fix email label

This commit is contained in:
Gabriel Bazán 2016-09-01 17:46:56 -03:00
commit 3c0bc734a4
4 changed files with 23 additions and 8 deletions

View file

@ -122,6 +122,7 @@ angular.module('copayApp.services').factory('configService', function(storageSer
configCache.bwsFor = configCache.bwsFor || {};
configCache.colorFor = configCache.colorFor || {};
configCache.aliasFor = configCache.aliasFor || {};
configCache.emailFor = configCache.emailFor || {};
// Coinbase
// Disabled for testnet

View file

@ -36,6 +36,7 @@ angular.module('copayApp.services')
wallet.name = config.aliasFor && (config.aliasFor[wallet.id] || wallet.credentials.walletName);
wallet.color = config.colorFor && (config.colorFor[wallet.id] || '#4A90E2');
wallet.email = config.emailFor && config.emailFor[wallet.id];
}
root.setBackupFlag = function(walletId) {