This website works better with JavaScript.
Home
Help
Sign In
vince
/
gestionnaire-de-taches-simple
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Corrige le choix des projets par popularité
master
vincent
2 days ago
parent
6ed044b4a1
commit
b946fdb8cb
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
);
Write
Preview
Loading…
Cancel
Save