diff --git a/gui/src/components/grid_active_heard_stations.vue b/gui/src/components/grid_active_heard_stations.vue
index a38402a1..655cd19c 100644
--- a/gui/src/components/grid_active_heard_stations.vue
+++ b/gui/src/components/grid_active_heard_stations.vue
@@ -16,7 +16,7 @@ function getDateTime(timestampRaw) {
navigator.language,
{
hourCycle: "h23",
- year: "numeric",
+ year: "2-digit",
month: "2-digit",
day: "2-digit",
hour: "2-digit",
@@ -46,7 +46,7 @@ function getMaidenheadDistance(dxGrid) {
-
+
Time |
@@ -61,35 +61,31 @@ function getMaidenheadDistance(dxGrid) {
-
+
- {{
- getDateTime(item[1].timestamp)
- }}
+ {{
+ getDateTime(item.timestamp)
+ }}
|
- {{ item[1].frequency / 1000 }} kHz
+ {{ item.frequency / 1000 }} kHz
|
- {{ item[1].origin }}
+ {{ item.origin }}
|
- {{ item[1].gridsquare }}
+ {{ item.gridsquare }}
|
- {{ getMaidenheadDistance(item[1].gridsquare) }} km
+ {{ getMaidenheadDistance(item.gridsquare) }} km
|
- {{
- item[1].activity_type
- }}
+ {{
+ item.activity_type
+ }}
|
- {{ item[1].snr }}
+ {{ item.snr }}
|
diff --git a/gui/src/components/grid_active_heard_stations_mini.vue b/gui/src/components/grid_active_heard_stations_mini.vue
index 9e7e356f..f2d2a2fb 100644
--- a/gui/src/components/grid_active_heard_stations_mini.vue
+++ b/gui/src/components/grid_active_heard_stations_mini.vue
@@ -46,14 +46,12 @@ function getMaidenheadDistance(dxGrid) {
-
+
Time |
DXCall |
- SNR |
-
@@ -66,9 +64,6 @@ function getMaidenheadDistance(dxGrid) {
{{ item.origin }}
|
-
- {{ item.snr }}
- |
diff --git a/gui/src/components/main_active_heard_stations.vue b/gui/src/components/main_active_heard_stations.vue
index fad0806d..8fa37eef 100644
--- a/gui/src/components/main_active_heard_stations.vue
+++ b/gui/src/components/main_active_heard_stations.vue
@@ -81,35 +81,35 @@ function getMaidenheadDistance(dxGrid) {
-
+
{{
- getDateTime(item[1].timestamp)
+ getDateTime(item.timestamp)
}}
|
{{ item[1].frequency / 1000 }} kHz{{ item.frequency / 1000 }} kHz
|
- {{ item[1].origin }}
+ {{ item.origin }}
|
- {{ item[1].gridsquare }}
+ {{ item.gridsquare }}
|
{{ getMaidenheadDistance(item[1].gridsquare) }} km{{ getMaidenheadDistance(item.gridsquare) }} km
|
{{
- item[1].activity_type
+ item.activity_type
}}
|
- {{ item[1].snr }}
+ {{ item.snr }}
|