Skip to content

Commit

Permalink
Merge pull request #1405 from argos-ci/allow-to-review-orphans
Browse files Browse the repository at this point in the history
fix: allow to review orphans
  • Loading branch information
gregberge authored Oct 25, 2024
2 parents 1a74360 + daa8542 commit c412713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/frontend/src/pages/Build/BuildDetailToolbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const BuildDetailToolbar = memo(function BuildDetailToolbar({
const playwrightTraceUrl =
activeDiff.compareScreenshot?.playwrightTraceUrl ?? null;
const canBeReviewed =
buildType === BuildType.Check && checkCanBeReviewed(activeDiff.status);
buildType !== BuildType.Reference && checkCanBeReviewed(activeDiff.status);
return (
<div
className={clsx(
Expand Down

0 comments on commit c412713

Please sign in to comment.