mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
⚡ Improve display name of fileFormats
This commit is contained in:
parent
4a43738829
commit
d943a8ca03
|
@ -109,27 +109,27 @@ export class SpreadsheetFile implements INodeType {
|
||||||
type: 'options',
|
type: 'options',
|
||||||
options: [
|
options: [
|
||||||
{
|
{
|
||||||
name: 'csv',
|
name: 'CSV',
|
||||||
value: 'csv',
|
value: 'csv',
|
||||||
description: 'Comma-separated values',
|
description: 'Comma-separated values',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ods',
|
name: 'HTML',
|
||||||
value: 'ods',
|
|
||||||
description: 'OpenDocument Spreadsheet',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'rtf',
|
|
||||||
value: 'rtf',
|
|
||||||
description: 'Rich Text Format',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'html',
|
|
||||||
value: 'html',
|
value: 'html',
|
||||||
description: 'HTML Table',
|
description: 'HTML Table',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'xls',
|
name: 'ODS',
|
||||||
|
value: 'ods',
|
||||||
|
description: 'OpenDocument Spreadsheet',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'RTF',
|
||||||
|
value: 'rtf',
|
||||||
|
description: 'Rich Text Format',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'XLS',
|
||||||
value: 'xls',
|
value: 'xls',
|
||||||
description: 'Excel',
|
description: 'Excel',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue