Add units and make sortable

This commit is contained in:
phl0
2025-01-14 10:03:53 +01:00
parent 091acb8b36
commit 682f606d3f
3 changed files with 24 additions and 12 deletions

View File

@@ -1224,11 +1224,11 @@ class QSO
'sig' => $this->getFormattedSig(),
'continent' => $this->continent,
'profilename' => $this->profilename,
'stationpower' => $this->stationpower,
'stationpower' => empty($this->stationpower) ? null : $this->stationpower.' W',
'distance' => $this->getFormattedDistance(),
'region' => $this->region,
'antennaelevation' => $this->antennaelevation,
'antennaazimuth' => $this->antennaazimuth
'antennaelevation' => empty($this->antennaelevation) ? null : $this->antennaelevation.'°',
'antennaazimuth' => empty($this->antennaazimuth) ? null : $this->antennaazimuth.'°'
];
}