Browse Source

Merge branch 'develop' of https://github.com/nocodb/nocodb into develop

pull/2611/head
Wing-Kam Wong 2 years ago
parent
commit
3ed78ff17d
  1. 4
      packages/nc-gui/components/project/spreadsheet/public/XcForm.vue

4
packages/nc-gui/components/project/spreadsheet/public/XcForm.vue

@ -283,7 +283,9 @@ export default {
this.view = this.viewMeta.view;
this.meta = this.viewMeta.model;
this.metas = this.viewMeta.relatedMetas;
this.columns = this.meta.columns.filter(c => c.show);
this.columns = this.meta.columns
.filter(c => c.show)
.filter(col => !isVirtualCol(col) || col.uidt === UITypes.LinkToAnotherRecord);
this.client = this.viewMeta.client;
} catch (e) {
if (e.response && e.response.status === 404) {

Loading…
Cancel
Save