FilamentF
Filament12mo ago
emil

HeaderActions stops working with HasTable

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(),
        ];
    }
}


The Table contract/trait causes the headerAction not to open a slideover.

No console errors. Regular x-filament-panels::page.

Any ideas, anyone?
Was this page helpful?