diff --git a/packages/nc-gui/utils/parsers/parserHelpers.ts b/packages/nc-gui/utils/parsers/parserHelpers.ts index 36986b3007..f1fae880ba 100644 --- a/packages/nc-gui/utils/parsers/parserHelpers.ts +++ b/packages/nc-gui/utils/parsers/parserHelpers.ts @@ -64,7 +64,7 @@ export const extractMultiOrSingleSelectProps = (colData: []) => { : [], ) - const uniqueVals = [...new Set(flattenedVals.map((v: any) => v.toString().trim().toLowerCase()))] + const uniqueVals = [...new Set(flattenedVals.map((v: any) => v.toString().trim()))] if (uniqueVals.length > maxSelectOptionsAllowed) { // too many options are detected, convert the column to SingleLineText instead @@ -81,7 +81,7 @@ export const extractMultiOrSingleSelectProps = (colData: []) => { colProps.dtxp = `${uniqueVals.map((v) => `'${v.replace(/'/gi, "''")}'`).join(',')}` } } else { - const uniqueVals = [...new Set(colData.map((v: any) => v.toString().trim().toLowerCase()))] + const uniqueVals = [...new Set(colData.map((v: any) => v.toString().trim()))] if (uniqueVals.length > maxSelectOptionsAllowed) { // too many options are detected, convert the column to SingleLineText instead