Skip to content

Commit

Permalink
fix(artifacts): Fix no expected artifacts message
Browse files Browse the repository at this point in the history
The "You don't have any expected artifacts" message currently shows
when there are in fact artifacts.
  • Loading branch information
ezimanyi committed Mar 1, 2018
1 parent b5f1f2a commit 9a8f9b3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ProducesArtifactsComponent implements IComponentOptions {
expected-artifact="expectedArtifact"
application="application">
</expected-artifact>
<div class="row" ng-if="ctrl.hasExpectedArtifacts()">
<div class="row" ng-if="!ctrl.hasExpectedArtifacts()">
<p class="col-md-12">
You don't have any expected artifacts for {{ ctrl.stage.name }}.
</p>
Expand Down

0 comments on commit 9a8f9b3

Please sign in to comment.