@dataloop-ai/components 0.18.83 → 0.18.84

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.18.83",
3
+ "version": "0.18.84",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -424,7 +424,10 @@ export default defineComponent({
424
424
  if (val) {
425
425
  const aliased = fromJSON(val)
426
426
 
427
- if (aliased !== searchQuery.value.trim()) {
427
+ if (
428
+ aliased !== searchQuery.value.trim() ||
429
+ !input.value?.innerHTML.length
430
+ ) {
428
431
  debouncedSetInputFromModel(aliased)
429
432
  }
430
433
  }