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