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");
|
|
|
|
|
|
|
|
@action save() {
|
|
|
|
this.args.closeModal();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action resetToDefault() {
|
|
|
|
this.args.model.reset();
|
|
|
|
}
|
|
|
|
}
|