mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 10:13:38 +08:00
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}`
|
|
});
|