From d4eff55d3045c91f12d36d28f4d73bbcd9a178fe Mon Sep 17 00:00:00 2001 From: Florian Krebs Date: Sat, 2 May 2026 16:21:48 +0200 Subject: [PATCH] fix(dashboard-zuhause): use options.type per filter for auto-entities lights MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Lichter rendern korrekt als mushroom-light-card. Vorher fehlte das options-Feld pro filter-include — auto-entities pushte rohe entity_ids in die grid.cards, was 'Konfigurationsfehler' produzierte. Pattern jetzt: filter: include: - domain: light area: options: type: custom:mushroom-light-card fill_container: true Sensoren-Chips, Cover-Cards und Handtuchheizung-Toggle waren OK. --- .storage/lovelace.lovelace | 108 ++++++++++++++++++++++++++++++------- 1 file changed, 90 insertions(+), 18 deletions(-) diff --git a/.storage/lovelace.lovelace b/.storage/lovelace.lovelace index 4959e47..d939d1d 100644 --- a/.storage/lovelace.lovelace +++ b/.storage/lovelace.lovelace @@ -269,7 +269,11 @@ "include": [ { "domain": "light", - "area": "wohnzimmer" + "area": "wohnzimmer", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -301,7 +305,11 @@ "include": [ { "domain": "light", - "area": "kuche" + "area": "kuche", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -333,7 +341,11 @@ "include": [ { "domain": "light", - "area": "esszimmer" + "area": "esszimmer", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -392,7 +404,11 @@ "include": [ { "domain": "light", - "area": "schlafzimmer" + "area": "schlafzimmer", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -445,7 +461,11 @@ "include": [ { "domain": "light", - "area": "kinderzimmer" + "area": "kinderzimmer", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -498,7 +518,11 @@ "include": [ { "domain": "light", - "area": "badezimmer" + "area": "badezimmer", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -550,7 +574,11 @@ "include": [ { "domain": "light", - "area": "wc" + "area": "wc", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -597,7 +625,11 @@ "include": [ { "domain": "light", - "area": "buro" + "area": "buro", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -645,7 +677,11 @@ "include": [ { "domain": "light", - "area": "gastezimmer" + "area": "gastezimmer", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -677,7 +713,11 @@ "include": [ { "domain": "light", - "area": "gaderobe" + "area": "gaderobe", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -722,7 +762,11 @@ "include": [ { "domain": "light", - "area": "speis" + "area": "speis", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -774,7 +818,11 @@ "include": [ { "domain": "light", - "area": "technikraum" + "area": "technikraum", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -800,7 +848,11 @@ "include": [ { "domain": "light", - "area": "gang" + "area": "gang", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] }, @@ -830,23 +882,43 @@ "include": [ { "domain": "light", - "area": "terrasse" + "area": "terrasse", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } }, { "domain": "light", - "area": "garage" + "area": "garage", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } }, { "domain": "light", - "area": "eingang" + "area": "eingang", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } }, { "domain": "light", - "area": "grillplatz" + "area": "grillplatz", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } }, { "domain": "light", - "area": "ruheplatz" + "area": "ruheplatz", + "options": { + "type": "custom:mushroom-light-card", + "fill_container": true + } } ] },