From 29f1cf84a74fa1a64d6274757fb855e3ba39dd8e Mon Sep 17 00:00:00 2001 From: Gustavo Maximiliano Cortez Date: Thu, 26 Nov 2015 15:51:01 -0300 Subject: [PATCH] Fix avatar default background color --- src/js/services/profileService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/services/profileService.js b/src/js/services/profileService.js index 3463318d8..1ba501b8d 100644 --- a/src/js/services/profileService.js +++ b/src/js/services/profileService.js @@ -630,7 +630,7 @@ angular.module('copayApp.services') name: config.aliasFor[c.walletId] || c.walletName, id: c.walletId, network: c.network, - color: config.colorFor[c.walletId] || '#2C3E50' + color: config.colorFor[c.walletId] || '#4A90E2' }; }); ret = lodash.filter(ret, function(w) {