fix: sort repertoire Années column reverse chronological (newest first)

This commit is contained in:
Pontoporeia
2026-07-10 12:29:08 +02:00
parent dae97ab812
commit b9c7d6c663
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -115,7 +115,8 @@ foreach ($filterColumns as $col) {
// viable entries at the top so users don't have to scroll past faded ones.
$sortMatchedFirst = fn($a, $b) =>
($b['matched'] <=> $a['matched']) ?: strcasecmp($a['value'], $b['value']);
usort($repData['years'], $sortMatchedFirst);
usort($repData['years'], fn($a, $b) =>
($b['matched'] <=> $a['matched']) ?: ($b['value'] <=> $a['value']));
usort($repData['ap_programs'], $sortMatchedFirst);
usort($repData['orientations'], $sortMatchedFirst);
usort($repData['finality_types'], $sortMatchedFirst);