Skip to content

Commit

Permalink
fix(articles): Update list-articles.client.view.html (meanjs#1933)
Browse files Browse the repository at this point in the history
The alert that 'there are no articles yet' didn't show up.
  • Loading branch information
aka-ak authored and lirantal committed Dec 5, 2017
1 parent ab89162 commit 23489c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h4 class="list-group-item-heading" data-ng-bind="article.title"></h4>
<p class="list-group-item-text" data-ng-bind="article.content"></p>
</a>
</div>
<div class="alert alert-warning text-center" data-ng-if="articles.$resolved && !articles.length">
<div class="alert alert-warning text-center" data-ng-if="vm.articles.$resolved && !articles.length">
No articles yet, why don't you <a data-ui-sref="admin.articles.create">create one</a>?
</div>
</section>

0 comments on commit 23489c6

Please sign in to comment.