Skip to content

Commit

Permalink
Merge pull request #359 from rappasoft/develop
Browse files Browse the repository at this point in the history
v1.10.2
  • Loading branch information
rappasoft authored Jun 21, 2021
2 parents 4ab0e49 + d983d8f commit 3cc70b5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `laravel-livewire-tables` will be documented in this file

## [Unreleased]

## [1.10.2] - 2021-06-21

### Changed

- [Use Alpine binding syntax to avoid conflicts with Vue](https://github.com/rappasoft/laravel-livewire-tables/pull/354)

## [1.10.1] - 2021-06-20

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

- Initial release

[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.1...development
[Unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.2...development
[1.10.2]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.1...v1.10.2
[1.10.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.10.0...v1.10.1
[1.10.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.9.0...v1.10.0
[1.9.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.8.0...v1.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"

<div
class="dropdown-menu dropdown-menu-right w-100 mt-0 mt-md-3"
:class="{'show' : open}"
x-bind:class="{'show' : open}"
aria-labelledby="columnSelect"
>
@foreach($columns as $column)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/bootstrap-4/includes/filters.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
</button>
<ul
class="dropdown-menu w-100 mt-md-3"
:class="{'show' : open}"
x-bind:class="{'show' : open}"
role="menu"
>
<li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"

<div
class="dropdown-menu dropdown-menu-end w-100"
:class="{'show' : open}"
x-bind:class="{'show' : open}"
aria-labelledby="columnSelect"
>
@foreach($columns as $column)
Expand Down
2 changes: 1 addition & 1 deletion resources/views/bootstrap-5/includes/filters.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class="btn dropdown-toggle d-block w-100 d-md-inline"
</button>
<ul
class="dropdown-menu w-100"
:class="{'show' : open}"
x-bind:class="{'show' : open}"
role="menu"
>
<li>
Expand Down

0 comments on commit 3cc70b5

Please sign in to comment.