From 4e51cd6569cc22526c880eaf97066ded17d7b545 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Wed, 17 Apr 2024 11:07:21 +0000 Subject: [PATCH] fix: typo correction --- packages/nc-gui/composables/useViewData.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/composables/useViewData.ts b/packages/nc-gui/composables/useViewData.ts index ec47ce409b..42c23b7436 100644 --- a/packages/nc-gui/composables/useViewData.ts +++ b/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,