17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
|
/* This component is used in the Category banners theme component */
|
||
|
/* https://meta.discourse.org/t/category-banners/86241 */
|
||
|
import MountWidget from "discourse/components/mount-widget";
|
||
|
|
||
|
export default class CategoryIcon extends MountWidget {
|
||
|
widget = "category-icon";
|
||
|
|
||
|
buildArgs() {
|
||
|
return { category: this.category };
|
||
|
}
|
||
|
|
||
|
didReceiveAttrs() {
|
||
|
super.didReceiveAttrs();
|
||
|
this.queueRerender();
|
||
|
}
|
||
|
}
|