Skip to content

Commit

Permalink
Merge branch 'develop' into v1
Browse files Browse the repository at this point in the history
  • Loading branch information
rappasoft committed Mar 30, 2022
2 parents 57a18f8 + 1055824 commit 6d1c797
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion resources/views/bootstrap-4/components/table/row.blade.php
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion resources/views/bootstrap-5/components/table/row.blade.php
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 6d1c797

Please sign in to comment.