mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 07:57:33 +08:00
support semicolon-separated data when importing delimiter-separated values files / data (#458)
This commit is contained in:
@@ -141,6 +141,11 @@ export const SUPPORTED_IMPORT_FILE_CATEGORY_AND_TYPES: ImportFileCategoryAndType
|
||||
type: 'custom_tsv',
|
||||
name: 'TSV (Tab-separated values) File',
|
||||
extensions: '.tsv,.txt',
|
||||
},
|
||||
{
|
||||
type: 'custom_ssv',
|
||||
name: 'SSV (Semicolon-separated values) File',
|
||||
extensions: '.txt',
|
||||
}
|
||||
],
|
||||
supportedEncodings: SUPPORTED_FILE_ENCODINGS,
|
||||
@@ -163,6 +168,11 @@ export const SUPPORTED_IMPORT_FILE_CATEGORY_AND_TYPES: ImportFileCategoryAndType
|
||||
type: 'custom_tsv',
|
||||
name: 'TSV (Tab-separated values) File',
|
||||
extensions: '.tsv,.txt',
|
||||
},
|
||||
{
|
||||
type: 'custom_ssv',
|
||||
name: 'SSV (Semicolon-separated values) File',
|
||||
extensions: '.txt',
|
||||
}
|
||||
],
|
||||
dataFromTextbox: true,
|
||||
|
||||
Reference in New Issue
Block a user