Merge pull request #2991 from cmgustavo/bug/delete-wallet-alias

Show alias in the notification after delete the wallet
This commit is contained in:
Matias Alejo Garcia 2015-07-14 17:40:31 -03:00
commit 0c05dc39e1

View file

@ -42,7 +42,7 @@ angular.module('copayApp.controllers').controller('preferencesDeleteWalletContro
if (err) {
self.error = err.message || err;
} else {
notification.success(gettext('Success'), gettextCatalog.getString('The wallet "{{walletName}}" was deleted', {walletName: name}));
notification.success(gettext('Success'), gettextCatalog.getString('The wallet "{{walletName}}" was deleted', {walletName: walletName}));
}
});
};