Merge branch 'bugfix_about' into 'v3'

ui_migration Bugfix aboutContent not showing values

See merge request openflexure/openflexure-microscope-server!603
This commit is contained in:
Julian Stirling 2026-05-29 08:59:08 +00:00
commit 67560a21f8

View file

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