1
0
Fork 0
mirror of https://git.youjo.love/youjo/youjo-fe.git synced 2025-03-07 18:59:59 +01:00

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'],
computed: {
slicedAvatars () {
return this.avatars ? this.avatars.slice(0, 10) : []
return this.avatars ? this.avatars.slice(0, 15) : []
}
},
components: {