0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/wizard/components/wizard-field-category.js.es6

9 Zeilen
259 B
Text

2019-07-26 10:59:41 +02:00
import { observes } from 'ember-addons/ember-computed-decorators';
export default Ember.Component.extend({
@observes('categories')
setValue() {
const categories = this.get('categories');
this.set('field.value', categories.map(c => c.id));
}
});