Multiple Modal Issue
I stumbled upon an issue where I have multiple actions(opening modals).
Whenever I open a modal, close it and open any other it still opens the first one.
I simplified the problem into this:
Any ideas?
Whenever I open a modal, close it and open any other it still opens the first one.
I simplified the problem into this:
- Blank Filament Page
protected function getHeaderActions(): array
{
return [
Action::make('test1')
->form([
TextInput::make('test1')
->label('Test 1'),
]),
Action::make('test2')
->form([
TextInput::make('test2')
->label('Test 2'),
]),
];
}
Any ideas?