mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-11 09:53:32 +03:00
Merge pull request #5912 from HParker/form-default-class-to-none
Form default error class to none
This commit is contained in:
commit
e09cd70cd0
@ -11,7 +11,11 @@ import ValidationStateMixin from 'ghost/mixins/validation-state';
|
||||
export default Ember.Component.extend(ValidationStateMixin, {
|
||||
classNameBindings: ['errorClass'],
|
||||
|
||||
errorClass: Ember.computed('hasError', function () {
|
||||
return this.get('hasError') ? 'error' : 'success';
|
||||
errorClass: Ember.computed('hasError', 'hasValidated.[]', function () {
|
||||
if (this.hasValidated.contains(this.get('property'))) {
|
||||
return this.get('hasError') ? 'error' : 'success';
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
})
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user