From c139bd6b057e7ba9701c4ae60d87a9a2f390087b Mon Sep 17 00:00:00 2001 From: Lucas Lara Date: Wed, 5 Feb 2025 13:03:05 +0100 Subject: [PATCH] Fix GroupsComponent: Set initialLoading to false when no node is selected --- ogWebconsole/src/app/components/groups/groups.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ogWebconsole/src/app/components/groups/groups.component.ts b/ogWebconsole/src/app/components/groups/groups.component.ts index ef3ce4f..8f24ef7 100644 --- a/ogWebconsole/src/app/components/groups/groups.component.ts +++ b/ogWebconsole/src/app/components/groups/groups.component.ts @@ -235,6 +235,7 @@ export class GroupsComponent implements OnInit, OnDestroy { } else { this.selectedNode = null; this.selectedClients.data = []; + this.initialLoading = false; } } },