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}
`); } %}