limit avatars list to display 10

This commit is contained in:
Brenden Bice 2019-04-01 22:38:48 -04:00
parent ff25966702
commit 2db607f49c

View file

@ -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: {