Move Table Actions to the right

If using the content-grid for tables instead of traditional tables, how can I move the column actions to the right? I've tried "justify-end" as extraAttribute, but it didn't work. But I can see inside the HTML that there's a "justify-start". How can I change this?
    protected function getTableActions(): array
    {
        return [
        Tables\Actions\ViewAction::make('view')
                                 ->form([])
                                 ->label('Details')
                                 ->button()
                                 ->color('primary')
                                 ->icon('heroicon-o-eye')
                                 ->modalHeading('Test')
                                 ->modalContent(fn ($record) => view('filament.modals.view-incident', ['record' => $record]))
                                 ->extraAttributes(['class' => 'justify-end'])
        ];
    }
Was this page helpful?
Move Table Actions to the right - Filament