Browse Source

fix: SQLViews SpecificDBType shouldn't be treated as virtual column

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/3434/head
Raju Udava 2 years ago
parent
commit
6691b9dc6f
  1. 3
      packages/nocodb-sdk/src/lib/UITypes.ts

3
packages/nocodb-sdk/src/lib/UITypes.ts

@ -46,7 +46,8 @@ export function isVirtualCol(
| ColumnType
) {
return [
UITypes.SpecificDBType,
// Shouldn't be treated as virtual column (Issue with SQL View column data display)
// UITypes.SpecificDBType,
UITypes.LinkToAnotherRecord,
UITypes.Formula,
UITypes.Rollup,

Loading…
Cancel
Save