From f5de99a25b6c9560b432bbe57f9b4a907b27151f Mon Sep 17 00:00:00 2001 From: Mashintime Date: Tue, 12 Mar 2024 20:40:35 -0400 Subject: [PATCH 1/2] Fix 18m freq selection --- gui/src/components/dynamic_components.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/components/dynamic_components.vue b/gui/src/components/dynamic_components.vue index abd6a3af..6229187f 100644 --- a/gui/src/components/dynamic_components.vue +++ b/gui/src/components/dynamic_components.vue @@ -832,7 +832,7 @@ function quickfill() {
15m
- +
18.106 MHz
EU / US From 4f4c678eacaba0063fb752b6893e43a80340786b Mon Sep 17 00:00:00 2001 From: Mashintime Date: Tue, 12 Mar 2024 21:37:44 -0400 Subject: [PATCH 2/2] Clicking a heard station populates ping textboxs --- gui/src/components/grid/grid_active_broadcasts.vue | 8 ++++++++ gui/src/components/grid/grid_active_broadcasts_vert.vue | 8 ++++++++ gui/src/components/grid/grid_active_heard_stations.vue | 6 +++++- .../components/grid/grid_active_heard_stations_mini.vue | 6 +++++- gui/src/components/grid/grid_ping.vue | 9 +++++++++ 5 files changed, 35 insertions(+), 2 deletions(-) diff --git a/gui/src/components/grid/grid_active_broadcasts.vue b/gui/src/components/grid/grid_active_broadcasts.vue index e4a466c3..08f1a04e 100644 --- a/gui/src/components/grid/grid_active_broadcasts.vue +++ b/gui/src/components/grid/grid_active_broadcasts.vue @@ -21,6 +21,14 @@ function startStopBeacon() { } } var dxcallPing = ref(""); +window.addEventListener( + "stationSelected", + function (eventdata) { + let evt = eventdata; + dxcallPing.value = evt.detail; + }, + false, + );