RED-10443 - 500 Error occurs when selecting ISO-8859-1 as Encoding Type for any CSV File Format

- update the value of ISO encoding to ISO-8859-1
This commit is contained in:
corinaolariu 2024-11-21 14:47:26 +02:00
parent c02863b079
commit 13cba9831c

View File

@ -21,6 +21,6 @@ export type FileAttributeConfigType = keyof typeof FileAttributeConfigTypes;
export const FileAttributeEncodingTypes = {
'UTF-8': 'UTF-8',
ASCII: 'ASCII',
ISO: 'ISO',
ISO: 'ISO-8859-1',
} as const;
export type FileAttributeEncodingType = keyof typeof FileAttributeEncodingTypes;