mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 12:23:39 +08:00
536f88b95b
This reverts commit 1f899bec21
.
8 lines
246 B
JavaScript
8 lines
246 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}`
|
|
});
|