Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
17 Zeilen
347 B
JavaScript
17 Zeilen
347 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();
|
|
}
|
|
}
|