File tree Expand file tree Collapse file tree
resources/js/components/ui Expand file tree Collapse file tree Original file line number Diff line number Diff 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 "
You can’t perform that action at this time.
0 commit comments