Merge pull request #3339 from stianst/KEYCLOAK-3266

KEYCLOAK-3266
This commit is contained in:
Stian Thorgersen 2016-10-18 07:09:04 +02:00 committed by GitHub
commit 07dcfeb330

View file

@ -30,7 +30,7 @@
<tr ng-repeat="p in policy">
<td>{{p.displayName}}</td>
<td>
<input type="text" class="form-control" ng-model="p.value" ng-show="p.configType" data-ng-required="!p.configType && !p.defaultValue">
<input type="text" class="form-control" ng-model="p.value" ng-show="p.configType" data-ng-required="p.configType && !p.defaultValue">
</td>
<td class="kc-action-cell" ng-click="removePolicy($index)">{{:: 'delete' | translate}}</td>
</tr>