diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df0ea3c2..c16734c20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to `laravel-livewire-tables` will be documented in this file ## [Unreleased] +## [1.25.1] - 2022-03-29 + +### Changed + +- Fixed $wireclick issue ## [1.25.0] - 2022-03-28 ### Added @@ -619,7 +624,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.25.0...development +[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.1...development +[1.25.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.0...v1.25.1 [1.25.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.24.0...v1.25.0 [1.24.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.23.0...v1.24.0 [1.23.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.22.0...v1.23.0 diff --git a/resources/views/bootstrap-4/components/table/row.blade.php b/resources/views/bootstrap-4/components/table/row.blade.php index 18216bf67..5a50f600c 100644 --- a/resources/views/bootstrap-4/components/table/row.blade.php +++ b/resources/views/bootstrap-4/components/table/row.blade.php @@ -1,4 +1,4 @@ -@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => []]) +@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => [], 'wireclick' => null]) @if (!$reordering && (method_exists($attributes, 'has') ? $attributes->has('wire:sortable.item') : array_key_exists('wire:sortable.item', $attributes->getAttributes()))) @php diff --git a/resources/views/bootstrap-5/components/table/row.blade.php b/resources/views/bootstrap-5/components/table/row.blade.php index 18216bf67..5a50f600c 100644 --- a/resources/views/bootstrap-5/components/table/row.blade.php +++ b/resources/views/bootstrap-5/components/table/row.blade.php @@ -1,4 +1,4 @@ -@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => []]) +@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => [], 'wireclick' => null]) @if (!$reordering && (method_exists($attributes, 'has') ? $attributes->has('wire:sortable.item') : array_key_exists('wire:sortable.item', $attributes->getAttributes()))) @php