Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 12:22:54 +01:00
15 Zeilen
343 B
JavaScript
15 Zeilen
343 B
JavaScript
import Component from "@glimmer/component";
|
|
import { action } from "@ember/object";
|
|
import I18n from "I18n";
|
|
|
|
export default class AdminWizardsColumnComponent extends Component {
|
|
title = I18n.t("admin.wizard.edit_columns");
|
|
|
|
@action save() {
|
|
this.args.closeModal();
|
|
}
|
|
|
|
@action resetToDefault() {
|
|
this.args.model.reset();
|
|
}
|
|
}
|