Skip to content

Commit 6d1c797

Browse files
committed
Merge branch 'develop' into v1
2 parents 57a18f8 + 1055824 commit 6d1c797

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

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

55
## [Unreleased]
66

7+
## [1.25.1] - 2022-03-29
8+
9+
### Changed
10+
11+
- Fixed $wireclick issue
712
## [1.25.0] - 2022-03-28
813

914
### Added
@@ -619,7 +624,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
619624

620625
- Initial release
621626

622-
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.0...development
627+
[unreleased]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.1...development
628+
[1.25.1]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.25.0...v1.25.1
623629
[1.25.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.24.0...v1.25.0
624630
[1.24.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.23.0...v1.24.0
625631
[1.23.0]: https://github.com/rappasoft/laravel-livewire-tables/compare/v1.22.0...v1.23.0

resources/views/bootstrap-4/components/table/row.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => []])
1+
@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => [], 'wireclick' => null])
22

33
@if (!$reordering && (method_exists($attributes, 'has') ? $attributes->has('wire:sortable.item') : array_key_exists('wire:sortable.item', $attributes->getAttributes())))
44
@php

resources/views/bootstrap-5/components/table/row.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => []])
1+
@props(['url' => null, 'target' => '_self', 'reordering' => false, 'customAttributes' => [], 'wireclick' => null])
22

33
@if (!$reordering && (method_exists($attributes, 'has') ? $attributes->has('wire:sortable.item') : array_key_exists('wire:sortable.item', $attributes->getAttributes())))
44
@php

0 commit comments

Comments
 (0)