mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
* improve events naming/handling * do not explicitly check for true/Fasle * make sure header is re-computed on toggle
11 lines
274 B
JavaScript
11 lines
274 B
JavaScript
import CategoryRowComponent from "select-kit/components/category-row";
|
|
|
|
export default CategoryRowComponent.extend({
|
|
layoutName: "select-kit/templates/components/category-row",
|
|
classNames: "none category-row",
|
|
|
|
click() {
|
|
this.sendAction("clearSelection");
|
|
}
|
|
});
|