Skip to content

Commit

Permalink
Step 23.24: Switch to ngIf
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela authored and DAB0mB committed Dec 14, 2016
1 parent 156252f commit 0180759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/ui/components/partyUninvited/partyUninvited.html
Expand Up @@ -6,7 +6,7 @@ <h4 class="md-headline">
<md-list-item *ngFor="let user of users | uninvited:party" ng-click="invite(user)">
<p>{{ user | displayName }}</p>
</md-list-item>
<md-list-item ng-if="(users | uninvited:party).length <= 0">
<md-list-item *ngIf="(users | uninvited:party).length <= 0">
Everyone are already invited.
</md-list-item>
</md-list>

0 comments on commit 0180759

Please sign in to comment.