@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dataloop-ai/components",
3
- "version": "0.19.175",
3
+ "version": "0.19.176",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -823,7 +823,10 @@ export default defineComponent({
823
823
  })
824
824
 
825
825
  const showPlaceholder = computed<boolean>(
826
- () => !modelValue.value || !String(modelValue.value)?.length
826
+ () =>
827
+ modelValue.value === null ||
828
+ modelValue.value === undefined ||
829
+ !String(modelValue.value)?.length
827
830
  )
828
831
 
829
832
  const spanText = computed<string>(() => {