RepeatableEntry Actions Not Working in Filament v4 ❌

Having issues with actions inside RepeatableEntry schemas in Filament v4. The edit and delete actions are completely unresponsive, while the header actions seem to be working perfectly fine. Code structure:
RepeatableEntry::make('candidateEducationHistories')
->schema([
Group::make([
Actions::make([
Action::make('edit')
->mountUsing(...)
->schema(...)
->action(...),
// other actions
]),
])
])
RepeatableEntry::make('candidateEducationHistories')
->schema([
Group::make([
Actions::make([
Action::make('edit')
->mountUsing(...)
->schema(...)
->action(...),
// other actions
]),
])
])
2 Replies
Dennis Koch
Dennis Koch4w ago
If this is a regression please open an issue on Github
Mansoor Khan
Mansoor Khan3w ago
I am having same issue. Even the Repeater component has the same issue. It stopped working after upgrading to v4 and then after some tweaks like removing the ->key() methods from the components within the repeater, it all started working fine. Now its broken again and adding back keys() is not helping.

Did you find this page helpful?