filament/forms
v3.2.9
v11.9
No response
8.2
repeater extra item actions are not blocked from clicking when other actions are being opened/closed
repeater extra item actions should prevent click on action if another action is proccessing
on repeater add extraItemActions, to make this issue easy to reproduce in that action add a form, one of the fields in that form should be select and it should have createOptionActionForm/editOptionActionForm, something like this:
->extraItemActions([
Action::make('publish')
->requiresConfirmation()
->color('success')
->button()
->label('Publish')
->form([
TextInput::make('text')
->label('Text')
->required(),
Select::make('category_id')
->relationship('category', 'name')
->createOptionAction(fn ($action) => $action->slideOver())
->createOptionForm([
TextInput::make('name')
->label('Name')
->required(),
])
])
->action(fn ($record) => info('Published comment')),
])
now that this component is made to reproduce this issue:
here is video recording of that issue:
https://github.com/GigaGiorgadze/filament-repetar-extra-action-issue
No response
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too