Skip to content

Commit 85fabf7

Browse files
committed
decorators/bootstrap/select: fix ng-show to display error messages correctly
1 parent 9115081 commit 85fabf7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/directives/decorators/bootstrap/select.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,7 @@
99
ng-required="form.required"
1010
ng-options="val as form.titleMap[val] for val in form.schema.enum">
1111
</select>
12-
<div class="help-block" ng-show="form.description" ng-bind-html="(hasError() && errorMessage(schemaError())) || form.description"></div>
12+
<div class="help-block"
13+
ng-show="(hasError() && errorMessage(schemaError())) || form.description"
14+
ng-bind-html="(hasError() && errorMessage(schemaError())) || form.description"></div>
1315
</div>

0 commit comments

Comments
 (0)