Browse Source

fix: set show/hide based on view type

pull/7477/head
Pranav C 8 months ago
parent
commit
f28167b5cc
  1. 2
      packages/nocodb/src/models/View.ts

2
packages/nocodb/src/models/View.ts

@ -1679,6 +1679,8 @@ export default class View implements ViewType {
if (column.id === mapView?.fk_geo_data_col_id) {
show = true;
}
} else if (view.type === ViewTypes.FORM && isSystemColumn(column)) {
show = false;
}
insertObjs.push({

Loading…
Cancel
Save