Browse Source

fix(nc-gui): Fixed grid jumping when comments are there

pull/6574/head
Muhammed Mustafa 11 months ago
parent
commit
5f351892f2
  1. 2
      packages/nc-gui/components/smartsheet/grid/Table.vue

2
packages/nc-gui/components/smartsheet/grid/Table.vue

@ -1358,7 +1358,7 @@ const handleCellClick = (event: MouseEvent, row: number, col: number) => {
<div class="items-center flex gap-1 min-w-[60px]">
<div
v-if="!readOnly || !isLocked || isMobileMode"
class="nc-row-no text-xs text-gray-500"
class="nc-row-no sm:min-w-4 text-xs text-gray-500"
:class="{ toggle: !readOnly, hidden: row.rowMeta.selected }"
>
{{ ((paginationDataRef?.page ?? 1) - 1) * (paginationDataRef?.pageSize ?? 25) + rowIndex + 1 }}

Loading…
Cancel
Save