From ffcc5cbcf843e0fcbf37dd930d117b5e75128f15 Mon Sep 17 00:00:00 2001 From: Jonathan Lassoff Date: Sat, 17 Feb 2024 21:12:40 -0800 Subject: [PATCH] Sort bgplgd neighbor states --- ui/src/app/components/neighbors/Neighbors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/app/components/neighbors/Neighbors.js b/ui/src/app/components/neighbors/Neighbors.js index 9a229116..740c8caf 100644 --- a/ui/src/app/components/neighbors/Neighbors.js +++ b/ui/src/app/components/neighbors/Neighbors.js @@ -89,7 +89,7 @@ const Neighbors = () => { up.push(n); } else if (s.includes("down")) { down.push(n); - } else if (s.includes("start") || s.includes("active")) { + } else if (s.includes("start") || s.includes("active") || s.includes("idle") || s.includes("connect")) { idle.push(n); } else { console.error("Couldn't classify neighbor by state:", n);