Skip to content

Commit 3cc70b5

Browse files
authored
Merge pull request #359 from rappasoft/develop
v1.10.2
2 parents 4ab0e49 + d983d8f commit 3cc70b5

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
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.2] - 2021-06-21
8+
9+
### Changed
10+
11+
- [Use Alpine binding syntax to avoid conflicts with Vue](https://github.com/rappasoft/laravel-livewire-tables/pull/354)
12+
713
## [1.10.1] - 2021-06-20
814

915
### Changed
@@ -392,7 +398,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
392398

393399
- Initial release
394400

395-
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.1...development
401+
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.2...development
402+
[1.10.2]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.1...v1.10.2
396403
[1.10.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...v1.10.1
397404
[1.10.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.9.0...v1.10.0
398405
[1.9.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...v1.9.0

resources/views/bootstrap-4/includes/column-select.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
1919

2020
<div
2121
class="dropdown-menu dropdown-menu-right w-100 mt-0 mt-md-3"
22-
:class="{'show' : open}"
22+
x-bind:class="{'show' : open}"
2323
aria-labelledby="columnSelect"
2424
>
2525
@foreach($columns as $column)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
2323
</button>
2424
<ul
2525
class="dropdown-menu w-100 mt-md-3"
26-
:class="{'show' : open}"
26+
x-bind:class="{'show' : open}"
2727
role="menu"
2828
>
2929
<li>

resources/views/bootstrap-5/includes/column-select.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
1919

2020
<div
2121
class="dropdown-menu dropdown-menu-end w-100"
22-
:class="{'show' : open}"
22+
x-bind:class="{'show' : open}"
2323
aria-labelledby="columnSelect"
2424
>
2525
@foreach($columns as $column)

resources/views/bootstrap-5/includes/filters.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
2323
</button>
2424
<ul
2525
class="dropdown-menu w-100"
26-
:class="{'show' : open}"
26+
x-bind:class="{'show' : open}"
2727
role="menu"
2828
>
2929
<li>

0 commit comments

Comments
 (0)