set maximum avatars count to 15

This commit is contained in:
Brenden Bice 2019-04-02 12:02:01 -04:00
parent 0c3a922341
commit df68ce4d83

View File

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