FilamentF
Filament3y ago
HL

Action buttons dissapeared

Hello!

Has anyone encountered this before?

None of my table actions show up anymore on local server. I'm using the same filament version (2.17.10) as on the live server, there all the the edit buttons show up at the end of each row.

->actions([
                EditAction::make(),
            ])


->actions([Action::make('edit')
                    ->url(fn (Blog $record): string => '/admin/accounts/' . $record->id . '/edit')
                    ->openUrlInNewTab(),
            ])


Neither of these show up anything, on none of my tables. (no I cannot scroll to the right)

Also a weird thing is happening with the text at the bottom left showing record numbers, might be related to this
image.png
image.png
Was this page helpful?