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:
authorMarcos Zuriaga <wolfi@wolfi.es>2016-10-07 18:22:58 +0300
committerMarcos Zuriaga <wolfi@wolfi.es>2016-10-07 18:22:58 +0300
commit10510f0915b9069973132c63d51c28f1760fa413 (patch)
tree75800dd07f6c9f829610863700ae9058535c45e2 /templates
parente9ac236a209aed43231d65df74a1def9a33c0d6c (diff)
Fix custom fields display
Diffstat (limited to 'templates')
-rw-r--r--templates/views/show_vault.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/views/show_vault.html b/templates/views/show_vault.html
index 6fe52ca5..5aa27625 100644
--- a/templates/views/show_vault.html
+++ b/templates/views/show_vault.html
@@ -132,7 +132,7 @@
</div>
<div class="row" ng-repeat="field in selectedCredential.custom_fields">
- <div class="col-xs-4 col-md-3 col-lg-3">{{field}}</div>
+ <div class="col-xs-4 col-md-3 col-lg-3">{{field.label}}</div>
<div class="col-xs-8 col-md-9 col-lg-9"><span credential-field value="field.value"
secret="field.secret"></span></div>
</div>