Add keys to all component lists.

This commit is contained in:
eal 2018-02-04 17:26:46 +02:00
parent 7957489aa0
commit e647bb22bb
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@
</div>
<div class="panel-body base01-background">
<div class="timeline">
<user-card v-for="follower in followers" :user="follower" :showFollows="false"></user-card>
<user-card v-for="follower in followers" :key="follower.id" :user="follower" :showFollows="false"></user-card>
</div>
</div>
</div>
@ -44,7 +44,7 @@
</div>
<div class="panel-body base01-background">
<div class="timeline">
<user-card v-for="friend in friends" :user="friend" :showFollows="true"></user-card>
<user-card v-for="friend in friends" :key="friend.id" :user="friend" :showFollows="true"></user-card>
</div>
</div>
</div>