Skip to content

Commit 5fe9dd4

Browse files
Improved pagination UX (#2251)
* Link column fix (#2223) (#2224) * Link column fix (#2223) * Add handling for From field for "LinkColumn" * Update ChangeLog * Improved pagination UX --------- Co-authored-by: Joe <[email protected]>
1 parent fb3dade commit 5fe9dd4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
All notable changes to `laravel-livewire-tables` will be documented in this file
44

55
## PREVIEW
6+
### Bug Fixes
7+
- Improved Pagination UX for Bootstrap 4 by @daniel-skopek in https://github.com/rappasoft/laravel-livewire-tables/pull/2251
8+
69
### Tweaks
710
- Tidying PHPDocs by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/2246
811

resources/views/specific/bootstrap-4/pagination.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@php(isset($this->numberOfPaginatorsRendered[$paginator->getPageName()]) ? $this->numberOfPaginatorsRendered[$paginator->getPageName()]++ : $this->numberOfPaginatorsRendered[$paginator->getPageName()] = 1)
44

55
<nav>
6-
<ul class="pagination">
6+
<ul class="pagination d-flex flex-wrap justify-content-start">
77
{{-- Previous Page Link --}}
88
@if ($paginator->onFirstPage())
99
<li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')">

0 commit comments

Comments
 (0)