luci-mod-status: channel_analysis.js: fix stale scan result.

When the new result is empty, including when another scan is running in the background, the table was emptied, but the graph persisted.
With this change, the list will persist and missing APs will be shown faded.

Signed-off-by: Milad Mohtashamirad <miladmohtashamirad@gmail.com>
This commit is contained in:
Milad Mohtashamirad 2023-07-07 11:14:28 +10:00
parent 9070cfd1a4
commit 03f1684059

View file

@ -191,6 +191,7 @@ return view.extend({
scanCache[results[i].bssid] = {};
scanCache[results[i].bssid].data = results[i];
scanCache[results[i].bssid].data.stale = false;
}
if (scanCache[local_wifi.bssid] == null)
@ -226,7 +227,7 @@ return view.extend({
}
for (var k in scanCache)
if (scanCache[k].stale)
if (scanCache[k].data.stale)
results.push(scanCache[k].data);
results.sort(function(a, b) {
@ -302,7 +303,7 @@ return view.extend({
E('span', { 'style': s }, '%h'.format(res.bssid))
]);
res.stale = true;
scanCache[results[i].bssid].data.stale = true;
}
cbi_update_table(table, rows);