limit avatars list to display 10

このコミットが含まれているのは:
Brenden Bice 2019-04-01 22:38:48 -04:00
コミット 2db607f49c
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -4,7 +4,7 @@ const AvatarList = {
props: ['avatars'],
computed: {
slicedAvatars () {
return this.avatars ? this.avatars.slice(0, 9) : []
return this.avatars ? this.avatars.slice(0, 10) : []
}
},
components: {