Don't show error symbol when loading unless error

This commit is contained in:
Julian Stirling 2026-05-10 15:03:01 +01:00
parent 2b8d08c78c
commit a265656984
2 changed files with 9 additions and 4 deletions

View file

@ -44,7 +44,8 @@ export const useSettingsStore = defineStore(
function resetState() {
waiting.value = false;
available.value = false;
error.value = ""; // TODO: verify that "" is needed to match initial state
// On resetState there is no connection.
error.value = "Microscope is not connected.";
}
function setConnected() {