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
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 /templates
parentb14fb9012075ee2982970244a05d3aeeba5d0c21 (diff)
fix default icon view for credentials
Diffstat (limited to 'templates')
-rw-r--r--templates/views/partials/icon-picker.html2
-rw-r--r--templates/views/show_vault.html6
2 files changed, 4 insertions, 4 deletions
diff --git a/templates/views/partials/icon-picker.html b/templates/views/partials/icon-picker.html
index 318c0fe4..6373a1df 100644
--- a/templates/views/partials/icon-picker.html
+++ b/templates/views/partials/icon-picker.html
@@ -1,4 +1,4 @@
-<div class="cell icon-category-auth" ng-if="!credential.url && !credential.icon"></div>
+<div class="cell fa fa-lock" ng-if="!credential.url && !credential.icon"></div>
<div class="cell" ng-if="credential.url || credential.icon">
<span class="icon">
diff --git a/templates/views/show_vault.html b/templates/views/show_vault.html
index 9b5893e2..75c97869 100644
--- a/templates/views/show_vault.html
+++ b/templates/views/show_vault.html
@@ -145,11 +145,11 @@
<span class="close icon-close" ng-click="closeSelected()" alt="Close"></span>
<div class="sidebar">
- <span class="icon sidebar-icon" ng-if="selectedCredential.url || credential.icon">
+ <span class="icon sidebar-icon" ng-if="selectedCredential.url || selectedCredential.icon">
<credential-icon credential="selectedCredential"></credential-icon>
</span>
- <span class="icon sidebar-icon" ng-if="!selectedCredential.url && !credential.icon">
- <credential-icon credential="selectedCredential"></credential-icon>
+ <span class="icon sidebar-icon" ng-if="!selectedCredential.url && !selectedCredential.icon">
+ <i class="fa fa-lock fa-3x icon-image"></i>
</span>
<h2 class="sidebar-label">{{selectedCredential.label}}</h2>
</div>