Skip to content

Commit 4ab0e49

Browse files
authored
Merge pull request #353 from rappasoft/develop
v1.10.1
2 parents b8f17fd + dfb0dd1 commit 4ab0e49

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [1.10.1] - 2021-06-20
8+
9+
### Changed
10+
11+
- Fixed Tailwind column popup on reorder
12+
713
## [1.10.0] - 2021-06-20
814

915
**This release requires re-publishing of assets.**
@@ -386,7 +392,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
386392

387393
- Initial release
388394

389-
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...development
395+
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.1...development
396+
[1.10.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...v1.10.1
390397
[1.10.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.9.0...v1.10.0
391398
[1.9.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...v1.9.0
392399
[1.8.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.7.1...v1.8.0

resources/views/tailwind/datatable.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
@include('livewire-tables::tailwind.includes.filters')
2727
</div>
2828

29-
<div class="md:space-x-2 md:flex md:items-center">
30-
@include('livewire-tables::tailwind.includes.bulk-actions')
31-
@include('livewire-tables::tailwind.includes.column-select')
32-
@include('livewire-tables::tailwind.includes.per-page')
29+
<div class="md:flex md:items-center">
30+
<div>@include('livewire-tables::tailwind.includes.bulk-actions')</div>
31+
<div>@include('livewire-tables::tailwind.includes.column-select')</div>
32+
<div>@include('livewire-tables::tailwind.includes.per-page')</div>
3333
</div>
3434
</div>
3535

resources/views/tailwind/includes/column-select.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($columnSelect)
2-
<div class="w-full md:w-auto mb-4 md:mb-0">
2+
<div class="w-full md:w-auto mb-4 md:mb-0 md:ml-2">
33
<div
44
x-data="{ open: false }"
55
@keydown.window.escape="open = false"

resources/views/tailwind/includes/per-page.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@if ($paginationEnabled && $showPerPage)
2-
<div class="w-full md:w-auto">
2+
<div class="w-full md:w-auto ml-0 md:ml-2">
33
<select
44
wire:model="perPage"
55
id="perPage"

0 commit comments

Comments
 (0)