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:
authorbrantje <brantje@gmail.com>2016-10-07 14:46:52 +0300
committerbrantje <brantje@gmail.com>2016-10-07 14:46:52 +0300
commit0304fdfd66001d08cad02cd314fd238c4ca5f030 (patch)
treef583680f1f750bddeb540ef1fb90a5e872263d5e /templates
parente7bf4f8533893e855a31f46cf9451c58cdca67e1 (diff)
Fix for Firefox messes up credential row. Closes #61
Diffstat (limited to 'templates')
-rw-r--r--templates/views/show_vault.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/views/show_vault.html b/templates/views/show_vault.html
index 756be080..6feb87ce 100644
--- a/templates/views/show_vault.html
+++ b/templates/views/show_vault.html
@@ -44,16 +44,18 @@
ng-click="selectCredential(credential)"
ng-class="{'selected': selectedCredential.credential_id == credential.credential_id}">
<td>
+ <span class="tags">
+ <span class="tag" ng-repeat="tag in credential.tags_raw">{{ ::tag.text}}</span>
+
+ </span>
<span class="icon">
<i class="fa fa-lock" ng-if="!credential.acl && !credential.shared_key"></i>
<i class="fa fa-share-alt" ng-if="credential.acl"></i>
<i class="fa fa-share-alt-square" ng-if="credential.shared_key"> </i>
</span>
<span class="label">{{ ::credential.label}}</span>
- <span class="tags">
- <span class="tag" ng-repeat="tag in credential.tags_raw">{{ ::tag.text}}</span>
- </span>
+
</td>
</tr>
</table>