diff --git a/gui/src/components/dynamic_components2.vue b/gui/src/components/dynamic_components2.vue index e4f21c51..802dfbe2 100644 --- a/gui/src/components/dynamic_components2.vue +++ b/gui/src/components/dynamic_components2.vue @@ -64,7 +64,7 @@ const gridWidgets = [ ), new gridWidget( active_stats, - { x: 16, y: 17, w: 8, h: 80 }, + { x: 16, y: 16, w: 8, h: 80 }, "Stats (waterfall, etc)", true, true, @@ -144,7 +144,7 @@ const gridWidgets = [ ), new gridWidget( grid_mycall, - { x: 0, y: 95, w: 4, h: 9 }, + { x: 8, y: 40, w: 5, h: 8 }, "My callsign widget", true, true, @@ -168,7 +168,7 @@ const gridWidgets = [ ), new gridWidget( grid_freq, - { x: 20, y: 8, w: 4, h: 9 }, + { x: 20, y: 8, w: 4, h: 8 }, "Frequency widget", true, true, diff --git a/gui/src/components/grid/grid_frequency.vue b/gui/src/components/grid/grid_frequency.vue index d88c52f7..89fa211b 100644 --- a/gui/src/components/grid/grid_frequency.vue +++ b/gui/src/components/grid/grid_frequency.vue @@ -7,27 +7,12 @@ import { useStateStore } from "../../store/stateStore.js"; const state = useStateStore(pinia); diff --git a/gui/src/components/grid/grid_mycall.vue b/gui/src/components/grid/grid_mycall.vue index dee0103e..1c6e13ca 100644 --- a/gui/src/components/grid/grid_mycall.vue +++ b/gui/src/components/grid/grid_mycall.vue @@ -5,40 +5,18 @@ import { setConfig } from "../../js/api"; import pinia from "../../store/index"; setActivePinia(pinia); -import { settingsStore as setting } from "../../store/settingsStore.js"; -const settings = reactive(setting); -import { useStateStore } from "../../store/stateStore.js"; - -const state = useStateStore(pinia); +import { settingsStore } from "../../store/settingsStore.js"; function updateMyCall() { setConfig(); }