Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-12 21:22:54 +01:00
9 Zeilen
Kein EOL
259 B
JavaScript
9 Zeilen
Kein EOL
259 B
JavaScript
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));
|
|
}
|
|
}); |