From 8f21e82cee538a8ffcab7c281088f0dad384d6ea Mon Sep 17 00:00:00 2001 From: Jordan Date: Sun, 3 Mar 2024 14:51:58 -0500 Subject: [PATCH] Update DocumentGithubLoader.node.ts Fixed for duplicate option name in DocumentGithubLoader. Option Ignore Paths was using the same name as Recursive, which was 'recursive' --- .../DocumentGithubLoader/DocumentGithubLoader.node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts b/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts index 2d640d9818cc0..0c91e7370ef1d 100644 --- a/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts +++ b/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts @@ -83,7 +83,7 @@ export class DocumentGithubLoader implements INodeType { }, { displayName: 'Ignore Paths', - name: 'recursive', + name: 'ignorePaths', type: 'string', description: 'Comma-separated list of paths to ignore, e.g. "docs, src/tests', default: '',