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:
Diffstat (limited to 'templates/views/partials/forms/edit_credential/custom_fields.html')
-rw-r--r--templates/views/partials/forms/edit_credential/custom_fields.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/views/partials/forms/edit_credential/custom_fields.html b/templates/views/partials/forms/edit_credential/custom_fields.html
index 27d43830..45507ebf 100644
--- a/templates/views/partials/forms/edit_credential/custom_fields.html
+++ b/templates/views/partials/forms/edit_credential/custom_fields.html
@@ -21,7 +21,7 @@
</span>
</div>
<div class="col-xs-4 selectType">
- <select class="form-control" ng-model="$parent.selected_field_type">
+ <select class="form-control" ng-model="new_custom_field.field_type">
<option value="text">{{ 'text' | translate}}</option>
<option value="password">{{ 'password' | translate}}</option>
<option value="file">{{ 'file' | translate}}</option>
@@ -30,7 +30,7 @@
</div>
<div class="row">
<div class="col-xs-12">
- <ng-password-meter ng-if="selected_field_type ==='password'"
+ <ng-password-meter ng-if="new_custom_field.field_type ==='password'"
password="new_custom_field.value"></ng-password-meter>
</div>
</div>