Browse Source

fix/Added LTAR in form

pull/2588/head
Muhammed Mustafa 2 years ago
parent
commit
b17179cd44
  1. 4
      packages/nc-gui/components/project/spreadsheet/public/XcForm.vue

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

@ -289,7 +289,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).filter(col => !isVirtualCol(col))
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