Skip to content

Commit

Permalink
Merge branch 'jof/bgplgd-neighbor-states' into jof/sfmix
Browse files Browse the repository at this point in the history
  • Loading branch information
jof committed Feb 18, 2024
2 parents 0828449 + ffcc5cb commit 7f66af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/components/neighbors/Neighbors.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7f66af0

Please sign in to comment.