diff --git a/packages/twenty-front/src/modules/object-record/record-show/hooks/useRecordShowPagePagination.ts b/packages/twenty-front/src/modules/object-record/record-show/hooks/useRecordShowPagePagination.ts index d9dc4004e533..35b43e1be3f0 100644 --- a/packages/twenty-front/src/modules/object-record/record-show/hooks/useRecordShowPagePagination.ts +++ b/packages/twenty-front/src/modules/object-record/record-show/hooks/useRecordShowPagePagination.ts @@ -60,7 +60,8 @@ export const useRecordShowPagePagination = ( const cursorFromRequest = currentRecordsPageInfo?.endCursor; - const [totalCount, setTotalCount] = useState(0); + const [totalCountBefore, setTotalCountBefore] = useState(0); + const [totalCountAfter, setTotalCountAfter] = useState(0); const { loading: loadingRecordBefore, records: recordsBefore } = useFindManyRecords({ @@ -78,7 +79,7 @@ export const useRecordShowPagePagination = ( objectNameSingular, recordGqlFields, onCompleted: (_, pagination) => { - setTotalCount(pagination?.totalCount ?? 0); + setTotalCountBefore(pagination?.totalCount ?? 0); }, }); @@ -98,7 +99,7 @@ export const useRecordShowPagePagination = ( objectNameSingular, recordGqlFields, onCompleted: (_, pagination) => { - setTotalCount(pagination?.totalCount ?? 0); + setTotalCountAfter(pagination?.totalCount ?? 0); }, }); @@ -147,6 +148,8 @@ export const useRecordShowPagePagination = ( const objectLabel = capitalize(objectMetadataItem.namePlural); + const totalCount = Math.max(1, totalCountBefore, totalCountAfter); + const viewNameWithCount = rankFoundInFiew ? `${rankInView + 1} of ${totalCount} in ${objectLabel}` : `${objectLabel} (${totalCount})`;