diff --git a/public/views/preferencesDeleteWallet.html b/public/views/preferencesDeleteWallet.html index 351e03519..f9de95220 100644 --- a/public/views/preferencesDeleteWallet.html +++ b/public/views/preferencesDeleteWallet.html @@ -5,13 +5,17 @@ -
-

Warning!

-
Permanently delete this wallet. THIS ACTION CANNOT BE REVERSED
-
- {{alias}}{{walletName}} +
+

Warning!

+
+

+ Permanently delete this wallet. +

+

+ THIS ACTION CANNOT BE REVERSED +

- + diff --git a/src/js/controllers/preferencesDelete.js b/src/js/controllers/preferencesDelete.js index d75fed717..60c1a4c2d 100644 --- a/src/js/controllers/preferencesDelete.js +++ b/src/js/controllers/preferencesDelete.js @@ -4,7 +4,7 @@ angular.module('copayApp.controllers').controller('preferencesDeleteWalletContro function($scope, $stateParams, $ionicHistory, gettextCatalog, lodash, profileService, $state, ongoingProcess, popupService) { var wallet = profileService.getWallet($stateParams.walletId); $scope.alias = lodash.isEqual(wallet.name, wallet.credentials.walletName) ? null : wallet.name + ' '; - $scope.walletName = '[' + wallet.credentials.walletName + ']'; + $scope.walletName = wallet.credentials.walletName; $scope.showDeletePopup = function() { var title = gettextCatalog.getString('Warning!'); diff --git a/src/sass/common.scss b/src/sass/common.scss index 40eb910a0..86e619887 100644 --- a/src/sass/common.scss +++ b/src/sass/common.scss @@ -45,6 +45,11 @@ } } } + +.white-bg{ + background: #fff; +} + .overlay { position: absolute; top:0;