Fix: dont discard service groups not included in layout (#4456)
Some checks are pending
Docker / Linting Checks (push) Waiting to run
Docker / Docker Build & Push (push) Blocked by required conditions

This commit is contained in:
shamoon
2024-12-20 15:00:25 -08:00
committed by GitHub
parent f4adebca92
commit ac39ffdc2f
2 changed files with 2 additions and 1 deletions

View File

@@ -699,6 +699,7 @@ export function findGroupByName(groups, name) {
} else if (group.groups) {
const foundGroup = findGroupByName(group.groups, name);
if (foundGroup) {
foundGroup.parent = group;
return foundGroup;
}
}