fix gui tests

This commit is contained in:
DJ2LS 2024-05-11 19:52:49 +02:00
parent 3ba762a53c
commit 376db69388
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ export async function getStationInfoByCallsign(callsign) {
result.location?.gridsquare || "N/A"; result.location?.gridsquare || "N/A";
// Check if info is null and assign default values if it is // Check if info is null and assign default values if it is
if (result.info === null) { if (result.info === null) {
station.stationInfo.value.info = { station.stationInfo.info = {
name: "", name: "",
city: "", city: "",
age: "", age: "",

View file

@ -8,7 +8,7 @@ export const useStateStore = defineStore("stateStore", () => {
var frequency = ref(0); var frequency = ref(0);
var new_frequency = ref(14093000); var new_frequency = ref(14093000);
var mode = ref("-"); var mode = ref("-");
var rf_level = ref("10"); var rf_level = ref(10);
var bandwidth = ref("-"); var bandwidth = ref("-");
var swr = ref(0); var swr = ref(0);