the form status now defaults to empty string

prevents unvalidated forms from showing up as success
This commit is contained in:
Adam Hess 2015-10-03 18:11:07 -06:00
parent 587c08979a
commit fde31c451a

View File

@ -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 '';
}
})
});