Skip to content

Commit

Permalink
Step 23.23: Switch to ngFor
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 576ef2d commit 156252f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/ui/components/partyUninvited/partyUninvited.html
Expand Up @@ -3,7 +3,7 @@ <h4 class="md-headline">
</h4>

<md-list>
<md-list-item ng-repeat="user in users | uninvited:party" ng-click="invite(user)">
<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">
Expand Down

0 comments on commit 156252f

Please sign in to comment.