Browse Source

Corrige le choix des projets par popularité

master
vincent 2 days ago
parent
commit
b946fdb8cb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Repository/ProjectRepository.php

+ 1
- 1
src/Repository/ProjectRepository.php View File

@ -37,7 +37,7 @@ SELECT p
FROM '.Project::class.' p
JOIN '.Task::class.' t
GROUP BY p.id
ORDER BY MAX(t.finishAt)
ORDER BY MAX(t.finishAt) DESC
')
->setMaxResults($limit);


Loading…
Cancel
Save