ui_migration bugfix(store) Fix silent crashing due to state values name changed

This commit is contained in:
Antonio Anaya 2026-05-28 21:01:14 -06:00
parent 60694f3532
commit 7361cedac0

View file

@ -1,6 +1,6 @@
<template>
<div class="host-input">
<div v-if="available">
<div v-if="ready">
<div>
<div class="uk-margin-small-bottom">
<b>Microscope Hostname:</b>
@ -10,7 +10,7 @@
<div class="uk-margin-small-bottom">
<b>API Origin:</b>
<br />
{{ origin }}
{{ baseUri }}
</div>
<action-button
v-if="illuminationType"
@ -82,7 +82,7 @@ export default {
},
computed: {
...mapState(useSettingsStore, ["origin", "microscopeHostname", "available", "waiting"]),
...mapState(useSettingsStore, ["baseUri", "microscopeHostname", "ready", "waiting"]),
...mapState(useWotStore, ["thingDescriptions"]),
...mapWritableState(useSettingsStore, ["error"]),