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 3ab6600 commit c386c66Copy full SHA for c386c66
packages/applet/src/components/state/StateFieldViewer.vue
@@ -68,7 +68,7 @@ const normalizedDisplayedValue = computed(() => {
68
}
69
70
else {
71
- const _value = type.value === 'custom' && !(props.data.value as InspectorCustomState)._custom?.type ? `"${displayedValue.value}"` : displayedValue.value
+ const _value = type.value === 'custom' && !(props.data.value as InspectorCustomState)._custom?.type ? `"${displayedValue.value}"` : (displayedValue.value === '' ? `""` : displayedValue.value)
72
const result = `<span class="${type.value}-state-type">${_value}</span>`
73
74
if (extraDisplayedValue)
0 commit comments