Browse Source

refactor(gui): hide row count from pagination component

re #1644

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/1668/head
Pranav C 2 years ago
parent
commit
97a0c09a1b
  1. 6
      packages/nc-gui/components/project/spreadsheet/components/pagination.vue

6
packages/nc-gui/components/project/spreadsheet/components/pagination.vue

@ -1,8 +1,8 @@
<template>
<div class="d-flex align-center">
<span v-if="count !== null && count !== Infinity" class="caption ml-2">
<!-- <span v-if="count !== null && count !== Infinity" class="caption ml-2">
{{ count }} record{{ count !== 1 ? 's' : '' }}
</span>
</span>-->
<v-spacer />
<v-pagination
v-if="count !== Infinity"
@ -35,7 +35,7 @@
</div>
<v-spacer />
<v-spacer />
<!-- <v-spacer />-->
</div>
</template>

Loading…
Cancel
Save