diff --git a/gui/src/components/main_modem_healthcheck.vue b/gui/src/components/main_modem_healthcheck.vue index d50a3d44..951ef1a4 100644 --- a/gui/src/components/main_modem_healthcheck.vue +++ b/gui/src/components/main_modem_healthcheck.vue @@ -11,7 +11,7 @@ function getOverallHealth() { let health = 0; if (state.modem_connection !== "connected") health += 5; if (!state.is_modem_running) health += 3; - if ( state.radio_status === false) health += 2; + if (state.radio_status === false) health += 2; if (process.env.FDUpdateAvail === "1") health += 1; return health; } diff --git a/gui/src/components/main_startup_check.vue b/gui/src/components/main_startup_check.vue index 1eb1891f..a66db4c0 100644 --- a/gui/src/components/main_startup_check.vue +++ b/gui/src/components/main_startup_check.vue @@ -50,7 +50,7 @@ function getRigControlStuff() { return true; case "rigctld": case "tci": - return state.radio_status + return state.radio_status; default: console.error( "Unknown radio control mode " + settings.remote.RADIO.control, @@ -348,20 +348,20 @@ function testHamlib() { > + +