mirror of
https://github.com/discourse/discourse.git
synced 2025-06-06 03:06:53 +08:00
12 lines
286 B
JavaScript
12 lines
286 B
JavaScript
import computed from 'ember-addons/ember-computed-decorators';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'span',
|
|
classNameBindings: [':check-display', 'status'],
|
|
|
|
@computed('checked')
|
|
status(checked) {
|
|
return checked ? 'status-checked' : 'status-unchecked';
|
|
}
|
|
});
|