Browse Source

fix: treat different case as different select options

pull/9517/head
mertmit 2 months ago
parent
commit
37575f4094
  1. 2
      packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts

2
packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts

@ -469,7 +469,7 @@ export class AtImportProcessor {
if ( if (
options.find( options.find(
(el) => (el) =>
el.title.toLowerCase() === (value as any).name.toLowerCase(), el.title === (value as any).name,
) )
) { ) {
logWarning( logWarning(

Loading…
Cancel
Save