Updated user table default sorting

This commit is contained in:
Julian Prieber 2023-12-01 14:02:20 +01:00
parent f6155b5959
commit 6f6502095f
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ class UserTable extends DataTableComponent
public function configure(): void
{
$this->setPrimaryKey('id');
$this->setDefaultSort('created_at', 'asc');
$this->setPerPageAccepted([50, 100, 250, 500, 1000, -1]);
$this->setColumnSelectEnabled();
}