Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js/app
diff options
context:
space:
mode:
authorbinsky <timo@binsky.org>2021-03-17 00:08:39 +0300
committerbinsky <timo@binsky.org>2021-03-17 00:08:39 +0300
commit22fe2fc7544e3a1706e2e7479d513391ba6d760c (patch)
tree04daaa1ff6c53bbf20ed19575293ac1ba5dad0a7 /js/app
parentb14fb9012075ee2982970244a05d3aeeba5d0c21 (diff)
fix default icon view for credentials
Diffstat (limited to 'js/app')
-rw-r--r--js/app/controllers/credential.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/app/controllers/credential.js b/js/app/controllers/credential.js
index 9d84f33c..4cff6ec1 100644
--- a/js/app/controllers/credential.js
+++ b/js/app/controllers/credential.js
@@ -229,6 +229,7 @@
$scope.addCredential = function () {
var new_credential = CredentialService.newCredential();
+ new_credential.icon = null;
var enc_c = CredentialService.encryptCredential(new_credential);
SettingsService.setSetting('edit_credential', enc_c);
$location.path('/vault/' + $scope.active_vault.guid + '/new');