Skip to content

Commit 9b7ae88

Browse files
committed
Merge branch '6.x' into forms-2
2 parents 6e0764a + cd7392d commit 9b7ae88

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

resources/js/components/ui/Pagination.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ function getRange(start, end) {
166166
<Button
167167
size="sm"
168168
:variant="hasPrevious && !showPageLinks ? 'filled' : 'ghost'"
169+
class="disabled:cursor-default"
169170
round
170171
icon="chevron-left"
171172
:disabled="!hasPrevious"
@@ -177,6 +178,7 @@ function getRange(start, end) {
177178
v-for="(page, i) in pages"
178179
size="sm"
179180
round
181+
class="disabled:cursor-default"
180182
:variant="page == currentPage ? 'filled' : 'ghost'"
181183
:key="i"
182184
@click="selectPage(page)"
@@ -187,6 +189,7 @@ function getRange(start, end) {
187189
<Button
188190
size="sm"
189191
:variant="hasNext && !showPageLinks ? 'filled' : 'ghost'"
192+
class="disabled:cursor-default"
190193
round
191194
icon="chevron-right"
192195
:disabled="!hasNext"

0 commit comments

Comments
 (0)