Skip to content

Commit b5e9587

Browse files
authoredJun 3, 2024··
feat(applet): allow select-text for string data fields (#410)
1 parent 7ee6ab3 commit b5e9587

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/applet/src/components/state/StateFieldViewer.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ const normalizedDisplayedValue = computed(() => {
6565
const _type = (props.data.value as InspectorCustomState)?._custom?.type
6666
const _value = type.value === 'custom' && !_type ? `"${displayedValue.value}"` : (displayedValue.value === '' ? `""` : displayedValue.value)
6767
const normalizedType = type.value === 'custom' && _type === 'ref' ? getInspectorStateValueType(_value) : type.value
68-
const result = `<span class="${normalizedType}-state-type flex whitespace-nowrap">${_value}</span>`
68+
const selectText = type.value === 'string' ? 'select-text' : ''
69+
const result = `<span class="${normalizedType}-state-type flex whitespace-nowrap ${selectText}">${_value}</span>`
6970
7071
if (extraDisplayedValue)
7172
return `${result} <span class="text-gray-500">(${extraDisplayedValue})</span>`

0 commit comments

Comments
 (0)
Please sign in to comment.