Skip to content

Commit 68e9afe

Browse files
Added type
1 parent e39c1fb commit 68e9afe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/plugin/VInlineTextField.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ const displayValue = computed(() => {
127127
return useTruncateText({
128128
length: settings.truncateLength,
129129
suffix: settings.truncateSuffix,
130-
text: modelValue.value,
130+
text: modelValue.value as string,
131131
});
132132
}
133133

src/plugin/VInlineTextarea.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ const displayValue = computed(() => {
126126
return useTruncateText({
127127
length: settings.truncateLength,
128128
suffix: settings.truncateSuffix,
129-
text: modelValue.value,
129+
text: modelValue.value as string,
130130
});
131131
}
132132

0 commit comments

Comments
 (0)