Skip to content

Commit

Permalink
fix(artifacts): only remove deleted expected artifacts from stages on…
Browse files Browse the repository at this point in the history
… trigger update (#8071)
  • Loading branch information
maggieneterval committed Mar 23, 2020
1 parent 29fdb89 commit a47c627
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ export function TriggersPageContent(props: ITriggersPageContentProps) {
findIndex(newExpectedArtifacts, e => e.id === expectedArtifact.id),
1,
);
ArtifactReferenceService.removeReferenceFromStages(expectedArtifact.id, pipelineParam.stages);
}
ArtifactReferenceService.removeReferenceFromStages(expectedArtifact.id, pipelineParam.stages);
});
updateExpectedArtifacts(newExpectedArtifacts);
}
Expand Down

0 comments on commit a47c627

Please sign in to comment.