Fix satellite grid display

This commit is contained in:
Ian Renton
2026-09-23 22:13:45 +01:00
parent c26482f06b
commit 9a0a3b938c
9 changed files with 17 additions and 17 deletions
+2 -2
View File
@@ -268,8 +268,8 @@ function addAlertRowsToTable(tbody, alerts) {
}
// If this is a satellite alert the ref will just be the satellite, but DX grid is also important, so
// show that if we can.
if (a["sig_refs"][i]["sig"] === "Satellite" && a["dx_grid"]) {
items[i] += " from " + a["sig_refs"][i]["dx_grid"];
if (a["sig_refs"][i]["sig"] === "Satellite" && a["dx_grid"] != null) {
items[i] += " from " + a["dx_grid"];
}
}
activityRefs = items.join(", ");