Skip to content

Commit

Permalink
fix: the count of avatar is wrong on the STableCellAvatars
Browse files Browse the repository at this point in the history
  • Loading branch information
ryo-gk committed Oct 27, 2023
1 parent 7225967 commit 476d807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/STableCellAvatars.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const names = computed(() => {
return `${_avatars.value[0].name}, ${_avatars.value[1].name}`
}
return `${_avatars.value[0].name}, ${_avatars.value[1].name} +${_avatars.value.length - 1}`
return `${_avatars.value[0].name}, ${_avatars.value[1].name} +${_avatars.value.length - 2}`
})
</script>

Expand Down

0 comments on commit 476d807

Please sign in to comment.