From b946fdb8cbfdb5a7e3c1ee6d05a5e5a0cfcc400c Mon Sep 17 00:00:00 2001 From: vincent Date: Mon, 1 Sep 2025 14:47:53 +0200 Subject: [PATCH] =?UTF-8?q?Corrige=20le=20choix=20des=20projets=20par=20po?= =?UTF-8?q?pularit=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Repository/ProjectRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Repository/ProjectRepository.php b/src/Repository/ProjectRepository.php index 0fd2e9e..07a7768 100644 --- a/src/Repository/ProjectRepository.php +++ b/src/Repository/ProjectRepository.php @@ -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);