Skip to content

Commit

Permalink
fix: allow to review orphans
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Oct 25, 2024
1 parent 1a74360 commit daa8542
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 daa8542

Please sign in to comment.