Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 63cab9f

Browse files
committedFeb 19, 2016
Add missing validation feedback flags
1 parent ef3aa06 commit 63cab9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/default.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
<span ng-if="form.feedback !== false"
4343
class="form-control-feedback"
44-
ng-class="evalInScope(form.feedback) || {'glyphicon': true, 'glyphicon-ok': hasSuccess(), 'glyphicon-remove': hasError() }"
44+
ng-class="evalInScope(form.feedback) || {'glyphicon': true, 'glyphicon-ok': form.disableSuccessState !== true && hasSuccess(), 'glyphicon-remove': form.disableErrorState !== true && hasError() }"
4545
aria-hidden="true"></span>
4646

4747
<span ng-if="hasError() || hasSuccess()"

0 commit comments

Comments
 (0)
Please sign in to comment.