diff --git a/app/scripts/modules/core/src/pipeline/executions/execution/Execution.tsx b/app/scripts/modules/core/src/pipeline/executions/execution/Execution.tsx index 281916abaaa..d07ee9e57ca 100644 --- a/app/scripts/modules/core/src/pipeline/executions/execution/Execution.tsx +++ b/app/scripts/modules/core/src/pipeline/executions/execution/Execution.tsx @@ -277,7 +277,7 @@ export class Execution extends React.Component )); const executionMarkerWidth = `${100 / execution.stageSummaries.length}%`; - const showExecutionName = !title && sortFilter.groupBy !== 'name'; + const showExecutionName = standalone || (!title && sortFilter.groupBy !== 'name'); const executionMarkers = execution.stageSummaries.map(stage => ( return (
- {title && ( + {(title || showExecutionName) && (

- {showAccountLabels && accountLabels} + {(showAccountLabels || showExecutionName) && accountLabels} {execution.fromTemplate && } - {title} -

- )} - {showExecutionName && ( -

- {accountLabels} - {execution.fromTemplate && } - {execution.name} + {title || execution.name}

)}