feat(Extract from File Node): Add relax_quote option (#13607)

Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
This commit is contained in:
Florian Kinder
2025-03-21 23:44:51 +09:00
committed by GitHub
parent 8215e0b59f
commit 830d2c5df5
3 changed files with 17 additions and 1 deletions

View File

@@ -18,7 +18,9 @@ export const description: INodeProperties[] = fromFile.description
newProperty.options = (newProperty.options as INodeProperties[]).map((option) => {
let newOption = option;
if (
['delimiter', 'encoding', 'fromLine', 'maxRowCount', 'enableBOM'].includes(option.name)
['delimiter', 'encoding', 'fromLine', 'maxRowCount', 'enableBOM', 'relaxQuotes'].includes(
option.name,
)
) {
newOption = { ...option, displayOptions: { show: { '/operation': ['csv'] } } };
}