Skip to content

Commit 74beb4c

Browse files
authored
Merge pull request #2259 from rappasoft/development
v3.7.3
2 parents cf8273c + b34c385 commit 74beb4c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-livewire-tables` will be documented in this file
44

5+
## [v3.7.3] - 2025-05-03
6+
### Bug Fixes
7+
- Interim fix for Livewire Component Columns to mitigate core Livewire bug by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/2258
8+
59
## [v3.7.2] - 2025-05-03
610
### Bug Fixes
711
- Improved Pagination UX for Bootstrap 4 by @daniel-skopek in https://github.com/rappasoft/laravel-livewire-tables/pull/2251

src/Views/Columns/Traits/Helpers/LivewireComponentColumnHelpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected function getBlade(array $attributes, string $key): string
8484
'<livewire:dynamic-component :component="$component" :key="$key" '.$this->implodeAttributes($attributes).' />',
8585
[
8686
'component' => $this->getLivewireComponent(),
87-
'key' => $key,
87+
'key' => \Illuminate\Support\Str::random(),
8888
...$attributes,
8989
],
9090
);

0 commit comments

Comments
 (0)