mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-07 06:08:48 +00:00
Fix empty groups with configured services
This commit is contained in:
parent
01252c6193
commit
3c28e4af44
1 changed files with 1 additions and 1 deletions
|
@ -158,7 +158,7 @@ export async function servicesResponse() {
|
|||
const discoveredKubernetesGroup = findGroupByName(discoveredKubernetesServices, groupName) || {
|
||||
services: [],
|
||||
};
|
||||
const configuredGroup = findGroupByName(configuredServices, groupName) || { services: [] };
|
||||
const configuredGroup = findGroupByName(configuredServices, groupName) || { services: [], groups: [] };
|
||||
|
||||
const mergedGroup = {
|
||||
name: groupName,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue