mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Add units and make sortable
This commit is contained in:
@@ -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.'°'
|
||||
];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user