We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b251eb commit c2381b6Copy full SHA for c2381b6
packages/applet/src/components/state/StateFieldViewer.vue
@@ -57,7 +57,7 @@ const normalizedDisplayedKey = computed(() => normalizedPath.value[normalizedPat
57
// normalized display value
58
const normalizedDisplayedValue = computed(() => {
59
const directlyDisplayedValueMap = ['Reactive']
60
- const extraDisplayedValue = (props.data as InspectorCustomState)?._custom?.stateTypeName || props.data?.stateTypeName
+ const extraDisplayedValue = (props.data.value as InspectorCustomState)?._custom?.stateTypeName || props.data?.stateTypeName
61
if (directlyDisplayedValueMap.includes(extraDisplayedValue as string)) {
62
return extraDisplayedValue
63
}
0 commit comments