HeaderActions stops working with HasTable
The Table contract/trait causes the headerAction not to open a slideover.
No console errors. Regular x-filament-panels::page.
Any ideas, anyone?
class MyPage extends Page implements HasInfolists, HasForms, HasTable
{
use InteractsWithInfolists;
use InteractsWithForms;
use InteractsWithTable;
protected function getHeaderActions(): array
{
return [
\Filament\Actions\Action::make('test')
->slideOver(),
];
}
}