1
0
Fork 0
discourse-custom-wizard-unl.../assets/javascripts/wizard/components/wizard-step-form.js.es6
2022-06-15 08:03:38 +02:00

9 Zeilen
300 B
JavaScript

import Component from "@ember/component";
import discourseComputed from "discourse-common/utils/decorators";
export default Component.extend({
classNameBindings: [":wizard-step-form", "customStepClass"],
@discourseComputed("step.id")
customStepClass: (stepId) => `wizard-step-${stepId}`,
});