Skip to content

Commit

Permalink
fix(admin): limit page size of applications
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenrikur committed Aug 1, 2024
1 parent 1de5662 commit dad4835
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/Filament/Resources/ApplicationResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,9 @@ public static function table(Table $table): Table
})
->requiresConfirmation()
->icon('heroicon-o-envelope'),
]);
])
->paginated([10, 20, 30, 40, 50])
->defaultPaginationPageOption(10);
}

public static function getRelations(): array
Expand Down

0 comments on commit dad4835

Please sign in to comment.