Skip to content

Commit afc7382

Browse files
scott graysonscott grayson
authored andcommitted
fix: use imported action classes instead of full namespace
1 parent b7a8644 commit afc7382

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Resources/LibraryItemResource.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ public static function table(Table $table): Table
8686
]),
8787
])
8888
->actions([
89-
Tables\Actions\EditAction::make(),
90-
Tables\Actions\DeleteAction::make(),
89+
EditAction::make(),
90+
DeleteAction::make(),
9191
])
9292
->bulkActions([
93-
Tables\Actions\BulkActionGroup::make([
94-
Tables\Actions\DeleteBulkAction::make(),
93+
BulkActionGroup::make([
94+
DeleteBulkAction::make(),
9595
]),
9696
]);
9797
}

0 commit comments

Comments
 (0)