discourse/app/assets/javascripts/wizard/models/wizard-field.js.es6
2018-06-15 17:03:24 +02:00

23 lines
406 B
JavaScript

import ValidState from "wizard/mixins/valid-state";
export default Ember.Object.extend(ValidState, {
id: null,
type: null,
value: null,
required: null,
warning: null,
check() {
if (!this.get("required")) {
this.setValid(true);
return true;
}
const val = this.get("value");
const valid = val && val.length > 0;
this.setValid(valid);
return valid;
}
});