forked from AkkomaGang/akkoma-fe
limit avatars list to display 10
This commit is contained in:
parent
ff25966702
commit
2db607f49c
1 changed files with 1 additions and 1 deletions
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue