diff --git a/src/panels/hacs-experimental-panel.ts b/src/panels/hacs-experimental-panel.ts
index 1124206a..388ba51d 100644
--- a/src/panels/hacs-experimental-panel.ts
+++ b/src/panels/hacs-experimental-panel.ts
@@ -29,6 +29,9 @@ import type {
import "../../homeassistant-frontend/src/components/ha-button-menu";
import "../../homeassistant-frontend/src/components/ha-check-list-item";
import "../../homeassistant-frontend/src/components/ha-select";
+import "../../homeassistant-frontend/src/components/ha-radio";
+import "../../homeassistant-frontend/src/components/ha-formfield";
+
import { IconOverflowMenuItem } from "../../homeassistant-frontend/src/components/ha-icon-overflow-menu";
import "../../homeassistant-frontend/src/components/ha-menu-button";
import "../../homeassistant-frontend/src/components/ha-svg-icon";
@@ -229,31 +232,32 @@ export class HacsExperimentalPanel extends LitElement {
`
: ""}
-
-
- filter.startsWith(`${this.hacs.localize(`dialog_custom_repositories.category`)}: `)
- ) || ""}
- >
- ${this.hacs.info.categories.map(
- (category) =>
- html`
-
- ${this.hacs.localize(`common.${category}`)}
-
- `
- )}
-
${!this.narrow
? html`
+
+ filter.startsWith(
+ `${this.hacs.localize(`dialog_custom_repositories.category`)}: `
+ )
+ ) || ""}
+ >
+ ${this.hacs.info.categories.map(
+ (category) =>
+ html`
+
+ ${this.hacs.localize(`common.${category}`)}
+
+ `
+ )}
+
${Object.keys(tableColumnDefaults).map(
@@ -270,7 +274,27 @@ export class HacsExperimentalPanel extends LitElement {
`
)}
`
- : ""}
+ : this.hacs.info.categories.map(
+ (category) => html`
+
+
+ filter ===
+ `${this.hacs.localize(
+ `dialog_custom_repositories.category`
+ )}: ${this.hacs.localize(`common.${category}`)}`
+ ) ?? false}
+ >
+
+
+ `
+ )}
`;
};
@@ -489,14 +513,24 @@ export class HacsExperimentalPanel extends LitElement {
ev.stopPropagation();
const categoryFilter = (ev.target as any).value;
if (categoryFilter) {
- this.activeFilters = [
- ...(this.activeFilters?.filter(
- (filter) =>
- !filter.startsWith(this.hacs.localize(`dialog_custom_repositories.category`)) &&
- filter !== categoryFilter
- ) || []),
- categoryFilter,
- ];
+ if ((ev.target as any).nodeName === "HA-RADIO" && (ev.target as any).checked === false) {
+ this.activeFilters = [
+ ...(this.activeFilters?.filter(
+ (filter) =>
+ !filter.startsWith(this.hacs.localize(`dialog_custom_repositories.category`)) &&
+ filter !== categoryFilter
+ ) || []),
+ ];
+ } else {
+ this.activeFilters = [
+ ...(this.activeFilters?.filter(
+ (filter) =>
+ !filter.startsWith(this.hacs.localize(`dialog_custom_repositories.category`)) &&
+ filter !== categoryFilter
+ ) || []),
+ categoryFilter,
+ ];
+ }
}
}
@@ -571,6 +605,9 @@ export class HacsExperimentalPanel extends LitElement {
ha-select {
margin: 8px;
}
+ ha-formfield {
+ padding: 0 4px 0 16px;
+ }
`,
];
}