CQ fixes
Build and Push Docker Image / build-and-push (pull_request) Successful in 58s
Python Code Quality / python-code-quality (pull_request) Successful in 10s
Python Test / python-test (pull_request) Successful in 18s

This commit is contained in:
Brian Bjarke Jensen
2025-11-12 17:01:40 +01:00
parent 05560d766a
commit 80156c8909
8 changed files with 73 additions and 50 deletions
+2 -2
View File
@@ -374,7 +374,7 @@
}
// Populate child filter or show single child
const childFilterContainer = document.querySelector('.controls');
const childFilterContainer = document.querySelector(".controls");
if (allChildren.length === 1) {
// Single child: show as read-only text
const child = allChildren[0];
@@ -401,7 +401,7 @@
} else {
// Multiple children: show dropdown
const childFilter = document.getElementById("childFilter");
childFilter.innerHTML = '';
childFilter.innerHTML = "";
allChildren.forEach((child) => {
const option = document.createElement("option");
option.value = child.id;