Skip to content

Commit

Permalink
fix(explore): shows pagination only when nessesary
Browse files Browse the repository at this point in the history
  • Loading branch information
kenodressel authored and mmpetarpeshev committed Jun 25, 2024
1 parent 6a37261 commit ebf7bc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/explore/BaseTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</tr>
</tbody>
</table>
<div v-if="rows.length > 0">
<div v-if="rows.length > 10">
<div class="flex justify-end gap-4 p-4">
<ButtonDefault fill="transparent" :disabled="page === 0" @click="setFirstPage">
First
Expand Down

0 comments on commit ebf7bc7

Please sign in to comment.