Skip to content

Commit 9ddb9ae

Browse files
authored
v3.4.20 - Development to Master (rappasoft#1938)
* Revert tableName to be public (rappasoft#1937) * v3.4.20 ChangeLog --------- Co-authored-by: lrljoe <[email protected]>
1 parent e4c05a8 commit 9ddb9ae

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-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.4.20] - 2024-09-10
6+
### Bug Fixes
7+
- Revert tableName to be public by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1937
8+
59
## [v3.4.19] - 2024-09-08
610
### Bug Fixes
711
- Adjustment for Laravel 10 GH Workflows by @lrljoe in https://github.com/rappasoft/laravel-livewire-tables/pull/1933

src/Traits/ComponentUtilities.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ trait ComponentUtilities
2424

2525
protected array $relationships = [];
2626

27-
protected string $tableName = 'table';
27+
#[Locked]
28+
public string $tableName = 'table';
2829

2930
#[Locked]
3031
public ?string $dataTableFingerprint;

0 commit comments

Comments
 (0)