diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca209ed9..e6ac79c87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `laravel-livewire-tables` will be documented in this file +## [v3.4.20] - 2024-09-10 +### Bug Fixes +- Revert tableName to be public by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1937 + ## [v3.4.19] - 2024-09-08 ### Bug Fixes - Adjustment for Laravel 10 GH Workflows by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1933 diff --git a/src/Traits/ComponentUtilities.php b/src/Traits/ComponentUtilities.php index 11625c8de..8cf7bad19 100644 --- a/src/Traits/ComponentUtilities.php +++ b/src/Traits/ComponentUtilities.php @@ -24,7 +24,8 @@ trait ComponentUtilities protected array $relationships = []; - protected string $tableName = 'table'; + #[Locked] + public string $tableName = 'table'; #[Locked] public ?string $dataTableFingerprint;