Skip to content

Commit

Permalink
Restricts "no projects available" dialog to when there are no projecs…
Browse files Browse the repository at this point in the history
…t AND no analysis.
  • Loading branch information
flekschas committed Jun 30, 2015
1 parent 909da82 commit ed1c5c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refinery/ui/src/js/dashboard/views/launchPad.html
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ <h4>Name</h4>
</div>
<span
class="alert alert-info"
ng-if="dashboard.allProjects.meta.total_count == 0">
ng-if="dashboard.allProjects.meta.total_count === 0 && dashboard.allAnalyses.meta.total_count === 0">
No projects found.
</span>
</div>
Expand Down

0 comments on commit ed1c5c2

Please sign in to comment.