0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 15:51:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/components/modal/admin-wizards-columns.js

18 Zeilen
347 B
JavaScript

2023-09-14 20:14:44 +02:00
import Component from "@glimmer/component";
import { action } from "@ember/object";
2023-09-14 20:19:20 +02:00
import I18n from "I18n";
2023-09-14 20:14:44 +02:00
export default class AdminWizardsColumnComponent extends Component {
title = I18n.t("admin.wizard.edit_columns");
2023-09-24 13:16:41 +02:00
@action
save() {
2023-09-14 20:14:44 +02:00
this.args.closeModal();
}
2023-09-24 13:16:41 +02:00
@action
resetToDefault() {
2023-09-14 20:14:44 +02:00
this.args.model.reset();
}
}