mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 21:51:23 +00:00
GUACAMOLE-292: Use ngIf to determine visibility of guacFormField. Using ngShow collides with the ngShow used internally on the guacFormField directive's root element.
This commit is contained in:
@@ -8,7 +8,7 @@
|
|||||||
<!-- All fields in form -->
|
<!-- All fields in form -->
|
||||||
<div class="fields">
|
<div class="fields">
|
||||||
<guac-form-field ng-repeat="field in form.fields" namespace="namespace"
|
<guac-form-field ng-repeat="field in form.fields" namespace="namespace"
|
||||||
ng-show="isVisible(field)"
|
ng-if="isVisible(field)"
|
||||||
field="field" model="values[field.name]"></guac-form-field>
|
field="field" model="values[field.name]"></guac-form-field>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user