Skip to content

Commit

Permalink
correct jobTrigger search
Browse files Browse the repository at this point in the history
  • Loading branch information
jsbroks committed Nov 1, 2024
1 parent 984cb97 commit 9e86c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/router/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const releaseRouter = createTRPCRouter({
.innerJoin(target, eq(releaseJobTrigger.targetId, target.id))
.where(
inArray(
releaseJobTrigger.id,
releaseJobTrigger.releaseId,
items.map((r) => r.id),
),
);
Expand Down

0 comments on commit 9e86c2a

Please sign in to comment.