Skip to content

Commit

Permalink
fix(core/pipeline): un-shadow parameter (spinnaker#6843)
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmunson authored Apr 12, 2019
1 parent ec12527 commit 48ba3fc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const skipRemainingWait = (
): void => {
const { confirmationModalService, executionService } = ReactInjector;
(event.target as HTMLElement).blur(); // forces closing of the popover when the modal opens
const matcher = (execution: IExecution) => {
const match = execution.stages.find(test => test.id === stage.id);
const matcher = ({ stages }: IExecution) => {
const match = stages.find(test => test.id === stage.id);
return match.status !== 'RUNNING';
};

Expand Down

0 comments on commit 48ba3fc

Please sign in to comment.