diff --git a/apps/webapp/app/components/run/RunOverview.tsx b/apps/webapp/app/components/run/RunOverview.tsx
index f33aa1668..130ecfd0d 100644
--- a/apps/webapp/app/components/run/RunOverview.tsx
+++ b/apps/webapp/app/components/run/RunOverview.tsx
@@ -159,16 +159,17 @@ export function RunOverview({ run, trigger, showRerun, paths }: RunOverviewProps
- {(run.tasks.length === 0 || run.tasks.every((t) => t.noop)) && (
-
- This Run completed but it did not use any Tasks – this can cause unpredictable
- results. Read the docs to view the solution.
-
- )}
+ {run.status === "SUCCESS" &&
+ (run.tasks.length === 0 || run.tasks.every((t) => t.noop)) && (
+
+ This Run completed but it did not use any Tasks – this can cause unpredictable
+ results. Read the docs to view the solution.
+
+ )}
Trigger