mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
fix gui tests
This commit is contained in:
parent
3ba762a53c
commit
376db69388
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ export async function getStationInfoByCallsign(callsign) {
|
|||
result.location?.gridsquare || "N/A";
|
||||
// Check if info is null and assign default values if it is
|
||||
if (result.info === null) {
|
||||
station.stationInfo.value.info = {
|
||||
station.stationInfo.info = {
|
||||
name: "",
|
||||
city: "",
|
||||
age: "",
|
||||
|
|
|
@ -8,7 +8,7 @@ export const useStateStore = defineStore("stateStore", () => {
|
|||
var frequency = ref(0);
|
||||
var new_frequency = ref(14093000);
|
||||
var mode = ref("-");
|
||||
var rf_level = ref("10");
|
||||
var rf_level = ref(10);
|
||||
var bandwidth = ref("-");
|
||||
|
||||
var swr = ref(0);
|
||||
|
|
Loading…
Reference in a new issue