Skip to content

Commit

Permalink
fix(artifacts): Correct render-if-feature for new artifacts on stage …
Browse files Browse the repository at this point in the history
…'produces artifact' (#6661)
  • Loading branch information
jkschneider authored and claymccoy committed Mar 9, 2019
1 parent de57adf commit 02af17f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/scripts/modules/core/src/pipeline/config/stages/stage.html
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,12 @@ <h4 ng-bind="stage.name || '[new stage]'"></h4>
</page-section>
<render-if-feature feature="artifacts">
<page-section key="producesArtifacts" label="Produces Artifacts" visible="stageProducesArtifacts()">
<render-if-feature feature="artifacts">
<produces-artifacts stage="stage" pipeline="pipeline"></produces-artifacts>
</render-if-feature>
<render-if-feature feature="artifactsRewrite">
<produces-artifacts-react stage="stage" pipeline="pipeline" on-produces-changed="producesArtifactsChanged" />
</render-if-feature>
<produces-artifacts stage="stage" pipeline="pipeline"></produces-artifacts>
</page-section>
</render-if-feature>
<render-if-feature feature="artifactsRewrite">
<page-section key="producesArtifacts" label="Produces Artifacts" visible="stageProducesArtifacts()">
<produces-artifacts-react stage="stage" pipeline="pipeline" on-produces-changed="producesArtifactsChanged" />
</page-section>
</render-if-feature>
<page-section key="comments" label="Comments" no-wrapper="true">
Expand Down

0 comments on commit 02af17f

Please sign in to comment.