fix: avoid fuzzy order of assignments when sorting by date

This commit is contained in:
Björn Fromme
2024-10-28 17:17:38 +01:00
parent 8c4754774b
commit d26a1840d1
2 changed files with 3 additions and 3 deletions
@@ -36,7 +36,7 @@ class IndexController extends AbstractController
$request->query->getInt('page', 1),
$request->query->getInt('limit', 10),
[
'defaultSortFieldName' => 'destination.dateFrom',
'defaultSortFieldName' => ['destination.dateFrom', 'assignment.id'],
'defaultSortDirection' => 'asc',
]
);