@pitcher/canvas-ui 2025.12.5-130919-beta → 2025.12.5-133035-beta

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/canvas-ui.js CHANGED
@@ -113179,7 +113179,7 @@ const _sfc_main$4E = /*@__PURE__*/defineComponent({
113179
113179
  const isLoadingTable = computed(() => isLoading.value || isBulkDeleting.value);
113180
113180
  const filteredData = computed(() => {
113181
113181
  if (!search.value) return fetchedData.value;
113182
- const currSearch = search.value.toLowerCase();
113182
+ const currSearch = (search.value ?? '').toLocaleLowerCase();
113183
113183
  return fetchedData.value.filter(item => item.name.toLowerCase().includes(currSearch) || item.tags?.some(tag => tag.toLowerCase().includes(currSearch)));
113184
113184
  });
113185
113185
  const showBulkToolbar = computed(() => isTemplateFolderEnabled.value ? selectedItemIds.value.length > 0 : tableRef.value?.selectedRowsCount);