8 lines
218 B
JavaScript
8 lines
218 B
JavaScript
import { showEntrance } from 'discourse/components/topic-list-item';
|
|
|
|
export default Ember.Component.extend({
|
|
tagName: 'tr',
|
|
classNameBindings: [':category-topic-link', 'topic.archived'],
|
|
click: showEntrance
|
|
});
|