mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:52:52 +08:00
9 lines
249 B
JavaScript
9 lines
249 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}`,
|
|
});
|