@dataloop-ai/components 0.19.175 → 0.19.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -823,7 +823,10 @@ export default defineComponent({
|
|
|
823
823
|
})
|
|
824
824
|
|
|
825
825
|
const showPlaceholder = computed<boolean>(
|
|
826
|
-
() =>
|
|
826
|
+
() =>
|
|
827
|
+
modelValue.value === null ||
|
|
828
|
+
modelValue.value === undefined ||
|
|
829
|
+
!String(modelValue.value)?.length
|
|
827
830
|
)
|
|
828
831
|
|
|
829
832
|
const spanText = computed<string>(() => {
|