Skip to content

Commit 81b723c

Browse files
committed
Merge branch 'tm69-patch-1' into develop
2 parents e4fd3d0 + e234ea8 commit 81b723c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
44

55
## [Unreleased]
66

7+
## [1.19.2] - 2021-10-15
8+
9+
### Changed
10+
11+
- Extracts just the field name from primaryKey - https://github.com/rappasoft/laravel-livewire-tables/pull/506
12+
- Update BS4 pagination - https://github.com/rappasoft/laravel-livewire-tables/pull/507
13+
714
## [1.19.1] - 2021-10-14
815

916
### Changed
@@ -524,7 +531,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
524531

525532
- Initial release
526533

527-
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.19.1...development
534+
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.19.2...development
535+
[1.19.2]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.19.2...v1.19.2
528536
[1.19.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.18.0...v1.19.1
529537
[1.19.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.18.0...v1.19.0
530538
[1.18.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.17.0...v1.18.0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@if ($showPagination)
22
@if ($paginationEnabled && $rows->lastPage() > 1)
33
<div class="row">
4-
<div class="col-12 col-md-6">
4+
<div class="col-12 col-md-6 overflow-auto">
55
{{ $rows->links() }}
66
</div>
77

0 commit comments

Comments
 (0)