Skip to content

Commit

Permalink
fix(KtPagination): disable back button on first page
Browse files Browse the repository at this point in the history
this was introduced by making pagination 1-indexed
  • Loading branch information
Isokaeder committed Dec 10, 2024
1 parent 0fba74a commit defcbb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/kotti-ui/source/kotti-pagination/KtPagination.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<ul class="kt-pagination">
<li :class="paginatorClasses(0)" @click="previousPage">
<li :class="paginatorClasses(1)" @click="previousPage">
<i
class="yoco kt-pagination__page-button"
v-text="Yoco.Icon.CHEVRON_LEFT"
Expand Down

0 comments on commit defcbb2

Please sign in to comment.