From ae0a87abef8e1043b9c6f3bbff0b60022bdd1a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrei=20Ioni=C8=9B=C4=83?= Date: Tue, 2 Apr 2024 10:53:37 +0100 Subject: [PATCH] remove action keys --- .../Resources/DocumentResource/Pages/ViewDocument.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Filament/Resources/DocumentResource/Pages/ViewDocument.php b/app/Filament/Resources/DocumentResource/Pages/ViewDocument.php index fad1960..e88179a 100644 --- a/app/Filament/Resources/DocumentResource/Pages/ViewDocument.php +++ b/app/Filament/Resources/DocumentResource/Pages/ViewDocument.php @@ -15,8 +15,8 @@ class ViewDocument extends ViewRecord protected function getActions(): array { return [ - 'edit' => Actions\EditAction::make(), - 'delete' => Actions\DeleteAction::make(), + Actions\EditAction::make(), + Actions\DeleteAction::make(), ]; } }