->actions([
ActionGroup::make([
Tables\Actions\EditAction::make(),
Tables\Actions\ViewAction::make() ,
])
->button()
->icon('heroicon-m-ellipsis-horizontal')
])
->recordUrl(null)
->recordAction(Tables\Actions\ViewAction::class);(Tables\Actions\ViewAction::class); to (Tables\Actions\EditAction::class); it opens indeed the edit modal. But I don't want it to open when clicking a row, I want it to open when the Edit is clicked in the ActionGroup.