Skip to content

Commit

Permalink
fix(pipeline): Fixed missing MPT icon for pipelines with no executions (
Browse files Browse the repository at this point in the history
  • Loading branch information
alanmquach authored Sep 6, 2018
1 parent d5882f0 commit e5083a5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export class ExecutionFilterService {
config,
executions: [],
targetAccounts: this.extractAccounts(config),
fromTemplate: (config && config.type === 'templatedPipeline') || false,
}),
);
} else {
Expand All @@ -166,6 +167,7 @@ export class ExecutionFilterService {
config,
executions: [],
targetAccounts: this.extractAccounts(config),
fromTemplate: (config && config.type === 'templatedPipeline') || false,
});
});
}
Expand Down

0 comments on commit e5083a5

Please sign in to comment.