forked from AkkomaGang/akkoma-fe
set maximum avatars count to 15
This commit is contained in:
parent
0c3a922341
commit
df68ce4d83
1 changed files with 1 additions and 1 deletions
|
@ -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: {
|
||||||
|
|
Loading…
Reference in a new issue