File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
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.0.2] - 2021-04-17
8
+
9
+ ### Changed
10
+
11
+ - Fixed checkbox click with row click combination following URL and not checking checkbox.
12
+
7
13
## [ 1.0.1] - 2021-04-17
8
14
9
15
### Changed
@@ -163,7 +169,8 @@ All notable changes to `laravel-livewire-tables` will be documented in this file
163
169
164
170
- Initial release
165
171
166
- [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.0.1...development
172
+ [ Unreleased ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.0.2...development
173
+ [ 1.0.2 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.0.1...v1.0.2
167
174
[ 1.0.1 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v1.0.0...v1.0.1
168
175
[ 1.0.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.4.0...v1.0.0
169
176
[ 0.4.0 ] : https://github.com/rappasoft/laravel-livewire-tables/compare/v0.3.3...v0.4.0
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ class="btn btn-primary btn-sm"
68
68
<input
69
69
wire:model =" selected"
70
70
value =" {{ $row -> getKey () } }"
71
+ onclick =" event.stopPropagation();return true;"
71
72
type =" checkbox"
72
73
/>
73
74
</x-livewire-tables::bs4 .table.cell >
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ class="ml-1 text-blue-600 underline text-cool-gray-700 text-sm leading-5 font-me
73
73
<input
74
74
wire:model =" selected"
75
75
value =" {{ $row -> getKey () } }"
76
+ onclick =" event.stopPropagation();return true;"
76
77
type =" checkbox"
77
78
class =" rounded-md shadow-sm border-cool-gray-300 block transition duration-150 ease-in-out sm:text-sm sm:leading-5"
78
79
/>
You can’t perform that action at this time.
0 commit comments