Browse Source

revert: hide row count from pagination component

This reverts commit 97a0c09a1b.

Signed-off-by: mertmit <mertmit99@gmail.com>
pull/1620/head
mertmit 3 years ago
parent
commit
a62aa5f01c
  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> <template>
<div class="d-flex align-center"> <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' : '' }} {{ count }} record{{ count !== 1 ? 's' : '' }}
</span>--> </span>
<v-spacer /> <v-spacer />
<v-pagination <v-pagination
v-if="count !== Infinity" v-if="count !== Infinity"
@ -35,7 +35,7 @@
</div> </div>
<v-spacer /> <v-spacer />
<!-- <v-spacer />--> <v-spacer />
</div> </div>
</template> </template>

Loading…
Cancel
Save