diff --git a/app/scripts/modules/core/src/pipeline/manualExecution/Triggers.tsx b/app/scripts/modules/core/src/pipeline/manualExecution/Triggers.tsx index ab3f2de51dc..2dd746ec4b1 100644 --- a/app/scripts/modules/core/src/pipeline/manualExecution/Triggers.tsx +++ b/app/scripts/modules/core/src/pipeline/manualExecution/Triggers.tsx @@ -34,7 +34,7 @@ export class Triggers extends React.Component { }; private updateTriggerDescription = (trigger: ITrigger) => { - if (trigger && !trigger.description) { + if (trigger && !trigger.description && Registry.pipeline.hasManualExecutionComponentForTriggerType(trigger.type)) { Observable.fromPromise( (Registry.pipeline.getManualExecutionComponentForTriggerType(trigger.type) as any).formatLabel(trigger), )