Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
marco76tv committed Sep 13, 2023
1 parent 335c30a commit 0d6a6db
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ListFailedJobs extends ListRecords
{
protected static string $resource = FailedJobsResource::class;

protected function getActions(): array
protected function getHeaderActions(): array
{
return [
Action::make('retry_all')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class ListJobBatches extends ListRecords
{
protected static string $resource = JobBatchesResource::class;

protected function getActions(): array
protected function getHeaderActions(): array
{
return [
Action::make('prune_batches')
Expand Down
2 changes: 1 addition & 1 deletion Filament/Resources/JobResource/Pages/EditJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class EditJob extends EditRecord
{
protected static string $resource = JobResource::class;

protected function getActions(): array
protected function getHeaderActions(): array
{
return [
DeleteAction::make(),
Expand Down
2 changes: 1 addition & 1 deletion Filament/Resources/JobResource/Pages/ListJobs.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ListJobs extends ListRecords
{
protected static string $resource = JobResource::class;

protected function getActions(): array
protected function getHeaderActions(): array
{
return [
CreateAction::make(),
Expand Down

0 comments on commit 0d6a6db

Please sign in to comment.