From 352105363462898537e443ba3aecd0c67a314ad3 Mon Sep 17 00:00:00 2001 From: Tim Wilkinson Date: Fri, 16 Aug 2024 11:57:31 -0700 Subject: [PATCH] Fix hidden node display (#1267) --- files/app/partial/local-and-neighbor-devices.ut | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/app/partial/local-and-neighbor-devices.ut b/files/app/partial/local-and-neighbor-devices.ut index fc84fd36..34db7371 100755 --- a/files/app/partial/local-and-neighbor-devices.ut +++ b/files/app/partial/local-and-neighbor-devices.ut @@ -200,8 +200,8 @@ {% sort(hlist, (a, b) => a.hostname == b.hostname ? 0 : a.hostname < b.hostname ? -1 : 1); for (let i = 0; i < length(hlist); i++) { - const hostname = nlist[i].hostname; - print(`
${hostname}
`); + const hostname = hlist[i].hostname; + print(`
${hostname}
`); } %}