feat(Convert to File Node): Add delimiter convert to csv (#11556)

This commit is contained in:
Jon
2024-11-05 12:17:01 +00:00
committed by GitHub
parent 981a852648
commit 63d454b776
4 changed files with 396 additions and 129 deletions

View File

@@ -41,6 +41,18 @@ export const properties: INodeProperties[] = [
default: false,
description: 'Whether to reduce the output file size',
},
{
displayName: 'Delimiter',
name: 'delimiter',
type: 'string',
displayOptions: {
show: {
'/operation': ['csv'],
},
},
default: ',',
description: 'The character to use to separate fields',
},
{
displayName: 'File Name',
name: 'fileName',