Browse Source

fix(nocodb): data apis test

pull/7611/head
DarkPhoenix2704 7 months ago
parent
commit
e6a938305b
  1. 2
      packages/nocodb/src/services/datas.service.ts
  2. 2
      packages/nocodb/src/services/public-datas.service.ts

2
packages/nocodb/src/services/datas.service.ts

@ -166,7 +166,7 @@ export class DatasService {
let options = {}; let options = {};
if (view.type === ViewTypes.CALENDAR) { if (view && view.type === ViewTypes.CALENDAR) {
{ {
options = { options = {
ignorePagination: true, ignorePagination: true,

2
packages/nocodb/src/services/public-datas.service.ts

@ -75,7 +75,7 @@ export class PublicDatasService {
let count = 0; let count = 0;
let option = {}; let option = {};
if (view.type === ViewTypes.CALENDAR) { if (view && view.type === ViewTypes.CALENDAR) {
option = { option = {
ignorePagination: true, ignorePagination: true,
}; };

Loading…
Cancel
Save