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:
  • 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'),
    ]),
    ];
    }
If I open test1 and close it, than click on test2 it still pops up test1 until I submit the action.

Any ideas?
Was this page helpful?