mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 04:42:02 -05:00
8 lines
249 B
JavaScript
8 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}`,
|
|
});
|