Browse Source

fix: exclude qrcode and barcode while checking removed column

qrcode and barcode are just virtual column which pointing to another column

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/6780/head
Pranav C 1 year ago
parent
commit
252ef73196
  1. 2
      packages/nocodb/src/services/meta-diffs.service.ts

2
packages/nocodb/src/services/meta-diffs.service.ts

@ -573,6 +573,8 @@ export class MetaDiffsService {
UITypes.Lookup, UITypes.Lookup,
UITypes.Formula, UITypes.Formula,
UITypes.Links, UITypes.Links,
UITypes.QrCode,
UITypes.Barcode,
].includes(column.uidt) ].includes(column.uidt)
) { ) {
continue; continue;

Loading…
Cancel
Save