ui/app/components/schema/input-boolean/component.js

13 lines
263 B
JavaScript

import Ember from 'ember';
export default Ember.Component.extend({
didReceiveAttrs() {
if ( this.get('value') === 'false' ) {
this.set('value', false);
}
else if ( this.get('value') === 'true' ) {
this.set('value', true);
}
}
});