18 lines
569 B
JavaScript
18 lines
569 B
JavaScript
import CategoryRowComponent from "select-kit/components/category-row";
|
|
import { categoryBadgeHTML } from "discourse/helpers/category-link";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default CategoryRowComponent.extend({
|
|
layoutName: "select-kit/templates/components/category-row",
|
|
classNames: "none category-row",
|
|
|
|
@discourseComputed("category")
|
|
badgeForCategory(category) {
|
|
return categoryBadgeHTML(category, {
|
|
link: this.categoryLink,
|
|
allowUncategorized: true,
|
|
hideParent: true
|
|
}).htmlSafe();
|
|
}
|
|
});
|