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