mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-24 16:24:32 +00:00
Fix satellite grid display
This commit is contained in:
+2
-2
@@ -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(", ");
|
||||
|
||||
Reference in New Issue
Block a user