From cbe7e11cf27ae4ae7a4b091fdc98376c7dc69ab6 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Fri, 14 Nov 2025 11:30:10 +0100 Subject: [PATCH] fix --- apps/ui/templates/dashboard.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/ui/templates/dashboard.html b/apps/ui/templates/dashboard.html index 8447e1b..d6ae349 100644 --- a/apps/ui/templates/dashboard.html +++ b/apps/ui/templates/dashboard.html @@ -1102,7 +1102,8 @@ // Set room icons based on room name document.addEventListener('DOMContentLoaded', () => { - const roomTitles = document.querySelectorAll('.room-title'); + // Only select room titles that are

elements (exclude Groups/Scenes sections) + const roomTitles = document.querySelectorAll('.room-title:not(.groups-section .room-title):not(.scenes-section .room-title)'); roomTitles.forEach(title => { const roomName = title.textContent.trim().toLowerCase(); let icon = '🏠'; // Default