From a59d08ffe36c871821d349627520924da0d9ac2c Mon Sep 17 00:00:00 2001 From: gsd Date: Thu, 19 Feb 2026 22:34:03 +0300 Subject: [PATCH] multidevices ff --- ui/src/app/components/packet/NetworkStatus.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/app/components/packet/NetworkStatus.component.ts b/ui/src/app/components/packet/NetworkStatus.component.ts index 5c80bf9..4c41e66 100644 --- a/ui/src/app/components/packet/NetworkStatus.component.ts +++ b/ui/src/app/components/packet/NetworkStatus.component.ts @@ -192,7 +192,7 @@ export class NetworkStatusComponent implements OnInit { switch (num) { case 0: { this.MODE = "ALL"; - this.http.get(`api/nodes/list?q=${devicesToRequest()}`).subscribe( + this.http.get(`api/nodes/list`).subscribe( (obj) => { (obj as NodeDTO[]).forEach( (node) => { @@ -211,7 +211,7 @@ export class NetworkStatusComponent implements OnInit { default: { this.MODE = "NODE"; this.NUM = num; - this.http.get(`api/nodes/${num}?q=${devicesToRequest()}`).subscribe( + this.http.get(`api/nodes/${num}`).subscribe( (obj) => { const node: NodeDTO = obj as NodeDTO if (node)