Skip to content

Commit 09016ab

Browse files
Also load external ID on problem overview page, so it can be shown.
1 parent afdf44f commit 09016ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/Controller/Jury/ProblemController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public function indexAction(Request $request)
174174
}
175175

176176
$problems = $this->em->createQueryBuilder()
177-
->select('partial p.{probid,name,timelimit,memlimit,outputlimit}', 'COUNT(tc.testcaseid) AS testdatacount')
177+
->select('partial p.{probid,externalid,name,timelimit,memlimit,outputlimit}', 'COUNT(tc.testcaseid) AS testdatacount')
178178
->from(Problem::class, 'p')
179179
->leftJoin('p.testcases', 'tc')
180180
->orderBy('p.probid', 'ASC')

0 commit comments

Comments
 (0)