Standarization

This commit is contained in:
Gustavo Maximiliano Cortez 2015-07-14 17:39:20 -03:00
parent 91b0bb2854
commit f0c5639feb
No known key found for this signature in database
GPG Key ID: 15EDAD8D9F2EB1AF
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ angular.module('copayApp.controllers').controller('preferencesDeleteWalletContro
var _deleteWallet = function() {
var fc = profileService.focusedClient;
var name = fc.credentials.walletName;
var walletName = name + (fc.alias ? ' (' + fc.alias + ')' : '' );
var walletName = (fc.alias||'') + ' [' + name + ']';
var self = this;
profileService.deleteWalletFC({}, function(err) {