From 9c3dff1c43dfa1b5763deb44f9646a9710b87be2 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Tue, 14 Feb 2023 14:45:13 +0530 Subject: [PATCH] feat: row numbering based on page Signed-off-by: Pranav C --- packages/nc-gui/components/smartsheet/Grid.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui/components/smartsheet/Grid.vue b/packages/nc-gui/components/smartsheet/Grid.vue index d33ffa5507..f29d98fa79 100644 --- a/packages/nc-gui/components/smartsheet/Grid.vue +++ b/packages/nc-gui/components/smartsheet/Grid.vue @@ -793,7 +793,7 @@ const closeAddColumnDropdown = () => { class="nc-row-no text-xs text-gray-500" :class="{ toggle: !readOnly, hidden: row.rowMeta.selected }" > - {{ rowIndex + 1 }} + {{ ((paginationData.page ?? 1) - 1) * 25 + rowIndex + 1 }}