diff --git a/app/src/pages/RunSummary/index.tsx b/app/src/pages/RunSummary/index.tsx index f0947e06fc5..c79fea381e3 100644 --- a/app/src/pages/RunSummary/index.tsx +++ b/app/src/pages/RunSummary/index.tsx @@ -155,7 +155,10 @@ export function RunSummary(): JSX.Element { isRunCurrent, }) - let headerText = t('run_complete_splash') + let headerText = + commandErrorList != null && commandErrorList.data.length > 0 + ? t('run_completed_with_warnings') + : t('run_completed_splash') if (runStatus === RUN_STATUS_FAILED) { headerText = t('run_failed_splash') } else if (runStatus === RUN_STATUS_STOPPED) {