Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
cf50a7deb3
* Apply prettier * applied prettier for similar-topics-validator Co-authored-by: Faizaan Gagan <fzngagan@gmail.com>
12 Zeilen
282 B
JavaScript
12 Zeilen
282 B
JavaScript
import ValueList from "admin/components/value-list";
|
|
|
|
export default ValueList.extend({
|
|
_saveValues() {
|
|
if (this.inputType === "array") {
|
|
this.onChange(this.collection);
|
|
return;
|
|
}
|
|
|
|
this.onChange(this.collection.join(this.inputDelimiter || "\n"));
|
|
},
|
|
});
|