Browse Source

Merge pull request #1166 from nocodb/fix/issue-781

fix: undefined parent id when calling paginatedM2mNotChildrenList
pull/1168/head
աɨռɢӄաօռɢ 2 years ago committed by GitHub
parent
commit
9078ec7aea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/project/spreadsheet/components/virtualCell/components/listItems.vue

2
packages/nc-gui/components/project/spreadsheet/components/virtualCell/components/listItems.vue

@ -162,7 +162,7 @@ export default {
offset: this.size * (this.page - 1),
...this.queryParams,
where
}, this.mm.vtn, this.parentId)
}, this.mm.vtn, this.parentId || -1)
} else {
this.data = await this.api.paginatedList({
limit: this.size,

Loading…
Cancel
Save