Merge branch 'callsign-lookup-include-dxcc-name' into 'master'

Show DXCC name in call lookup data table (issue #164)

Closes #164

See merge request gridtracker.org/gridtracker!195

If this is changing anything in the UI or operational behavior, please prepare to update the wiki!
merge-requests/196/merge
Matthew Chambers 2022-09-08 23:08:11 +00:00
commit 5aed188c6a
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -15240,7 +15240,11 @@ function displayLookupObject(lookup, gridPass, fromCache = false)
worker += makeRow("Polish OT", lookup, "plot");
worker += makeRow("German DOK", lookup, "dok");
worker += makeYesNoRow("DOK is Sonder-DOK", lookup, "sondok");
worker += makeRow("DXCC", lookup, "dxcc");
// worker += makeRow("DXCC", lookup, "dxcc");
worker +=
"<tr><td>DXCC</td><td>" +
getLookProp(lookup, "dxcc") + " - " + g_dxccToAltName[getLookProp(lookup, "dxcc")] +
"</td></tr>";
worker += makeRow("CQ zone", lookup, "cqzone");
worker += makeRow("ITU zone", lookup, "ituzone");
worker += makeRow("IOTA", lookup, "iota");