Browse Source

Merge pull request #5092 from nocodb/feat/row-numbering

feat: row numbering based on page
pull/5115/head
Raju Udava 2 years ago committed by GitHub
parent
commit
a9fd6f3aea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/nc-gui/components/smartsheet/Grid.vue

2
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 }}
</div>
<div
v-if="!readOnly"

Loading…
Cancel
Save