Skip to content

Commit f2867ad

Browse files
committed
fix selection
1 parent 772d430 commit f2867ad

File tree

1 file changed

+1
-1
lines changed
  • apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/knowledge-tag-filters

1 file changed

+1
-1
lines changed

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel/components/editor/components/sub-block/components/knowledge-tag-filters/knowledge-tag-filters.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export function KnowledgeTagFilters({
117117

118118
const rowsToFilters = (rowsToConvert: TagFilterRow[]): TagFilter[] => {
119119
return rowsToConvert
120-
.filter((row) => row.cells.tagName?.trim() && row.cells.value?.trim())
120+
.filter((row) => row.cells.tagName?.trim())
121121
.map((row) => ({
122122
id: row.id,
123123
tagName: row.cells.tagName || '',

0 commit comments

Comments
 (0)