Skip to content

Commit bf7827e

Browse files
committed
Fix for the test latest runs showing other environments
1 parent bc020a3 commit bf7827e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/webapp/app/presenters/v3/TestTaskPresenter.server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ export class TestTaskPresenter {
6969
ON
7070
tr."taskIdentifier" = bwt.slug
7171
WHERE
72-
bwt."friendlyId" = ${taskFriendlyId}
72+
bwt."friendlyId" = ${taskFriendlyId} AND
73+
tr."runtimeEnvironmentId" = ${task.runtimeEnvironment.id}
7374
ORDER BY
7475
tr."createdAt" DESC
7576
LIMIT 5

0 commit comments

Comments
 (0)