TableWidget Actions not working as expected

I'm trying to add actions to a WidgetTable, but the actions don't work as expected. When clicking on the Edit link, it appears to call the Save method as I get a notification in the upper right that it was saved. Where am I going wrong?

    protected function getTableActions(): array
    {
        return [
            Tables\Actions\EditAction::make(),
            Tables\Actions\DeleteAction::make(),
        ];
    }
Was this page helpful?