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 11 months 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.Formula,
UITypes.Links,
UITypes.QrCode,
UITypes.Barcode,
].includes(column.uidt)
) {
continue;

Loading…
Cancel
Save