Browse Source

fix: skip filter import for Links type

pull/6710/head
Raju Udava 1 year ago
parent
commit
c0473c3ba9
  1. 6
      packages/nocodb/src/modules/jobs/jobs/at-import/at-import.processor.ts

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

@ -2083,7 +2083,11 @@ export class AtImportProcessor {
const ncFilters = [];
// console.log(filter)
if (datatype === UITypes.Date || datatype === UITypes.DateTime) {
if (
datatype === UITypes.Date ||
datatype === UITypes.DateTime ||
datatype === UITypes.Links
) {
// skip filters over data datatype
updateMigrationSkipLog(
await sMap.getNcNameFromAtId(viewId),

Loading…
Cancel
Save