mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
classNameBindings: [":wizard-step-form", "customStepClass"],
|
|
|
|
@computed("step.id")
|
|
customStepClass: stepId => `wizard-step-${stepId}`
|
|
});
|