0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-24 10:20:28 +01:00
discourse-custom-wizard/assets/javascripts/discourse/components/custom-wizard-field-topic.js
2024-11-22 16:45:50 +01:00

21 Zeilen
345 B
JavaScript

import Component from "@ember/component";
export default Component.extend({
topics: [],
didInsertElement() {
const value = this.field.value;
if (value) {
this.set("topics", value);
}
},
actions: {
setValue(_, topics) {
if (topics.length) {
this.set("field.value", topics);
}
},
},
});