From 9ddb9aea6358e6b1202701ed2a0b38bd4213dabc Mon Sep 17 00:00:00 2001 From: Joe <104938042+lrljoe@users.noreply.github.com> Date: Tue, 10 Sep 2024 01:19:45 +0100 Subject: [PATCH] v3.4.20 - Development to Master (#1938) * Revert tableName to be public (#1937) * v3.4.20 ChangeLog --------- Co-authored-by: lrljoe --- CHANGELOG.md | 4 ++++ src/Traits/ComponentUtilities.php | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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;