Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 4104128

Browse files
author
Brian Spencer
committed
fix(formly-field): Style issue
1 parent c5ece37 commit 4104128

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/directives/formly-field.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ function formlyField($http, $q, $compile, $templateCache, $interpolate, formlyCo
386386
} else {
387387
return formControls.some(fc => {
388388
const noTouchedButDirty = (angular.isUndefined(fc.$touched) && fc.$dirty)
389-
return fc.$touched || noTouchedButDirty
389+
return (fc.$touched || noTouchedButDirty)
390390
})
391391
}
392392
}, function onShowValidationChange(show) {

0 commit comments

Comments
 (0)