Browse Source

fix: typo correction

pull/8295/head
Pranav C 3 months ago
parent
commit
4e51cd6569
  1. 2
      packages/nc-gui/composables/useViewData.ts

2
packages/nc-gui/composables/useViewData.ts

@ -204,7 +204,7 @@ export function useViewData(
...(isUIAllowed('sortSync') ? {} : { sortArrJson: JSON.stringify(sorts.value) }),
...(isUIAllowed('filterSync') ? {} : { filterArrJson: JSON.stringify(nestedFilters.value) }),
where: where?.value,
...(excludePageInfo.value ? {} : { excludeCount: 'true' }),
...(excludePageInfo.value ? { excludeCount: 'true' } : {}),
} as any,
{
cancelToken: controller.value.token,

Loading…
Cancel
Save