We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efc08a commit 6723adfCopy full SHA for 6723adf
apps/sim/lib/workflows/json-sanitizer.ts
@@ -234,6 +234,11 @@ function sanitizeSubBlocks(
234
return
235
}
236
237
+ // Skip knowledge base tag filters and document tags (workspace-specific data)
238
+ if (key === 'tagFilters' || key === 'documentTags') {
239
+ return
240
+ }
241
+
242
sanitized[key] = subBlock.value
243
})
244
@@ -384,6 +389,10 @@ export function sanitizeForExport(state: WorkflowState): ExportWorkflowState {
384
389
) {
385
390
subBlock.value = ''
386
391
392
+ // Remove knowledge base tag filters and document tags (workspace-specific data)
393
394
+ subBlock.value = ''
395
387
396
388
397
398
0 commit comments