File tree Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Expand file tree Collapse file tree 5 files changed +12
-5
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
4
4
5
5
## [ Unreleased]
6
6
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
+
7
13
## [ 1.10.1] - 2021-06-20
8
14
9
15
### Changed
@@ -392,7 +398,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
392
398
393
399
- Initial release
394
400
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
396
403
[ 1.10.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...v1.10.1
397
404
[ 1.10.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.9.0...v1.10.0
398
405
[ 1.9.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...v1.9.0
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
19
19
20
20
<div
21
21
class =" dropdown-menu dropdown-menu-right w-100 mt-0 mt-md-3"
22
- :class =" {'show' : open}"
22
+ x-bind :class =" {'show' : open}"
23
23
aria-labelledby =" columnSelect"
24
24
>
25
25
@foreach ($columns as $column )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
23
23
</button >
24
24
<ul
25
25
class =" dropdown-menu w-100 mt-md-3"
26
- :class =" {'show' : open}"
26
+ x-bind :class =" {'show' : open}"
27
27
role =" menu"
28
28
>
29
29
<li >
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
19
19
20
20
<div
21
21
class =" dropdown-menu dropdown-menu-end w-100"
22
- :class =" {'show' : open}"
22
+ x-bind :class =" {'show' : open}"
23
23
aria-labelledby =" columnSelect"
24
24
>
25
25
@foreach ($columns as $column )
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
23
23
</button >
24
24
<ul
25
25
class =" dropdown-menu w-100"
26
- :class =" {'show' : open}"
26
+ x-bind :class =" {'show' : open}"
27
27
role =" menu"
28
28
>
29
29
<li >
You can’t perform that action at this time.
0 commit comments