Skip to content

Commit

Permalink
fix(table): fix wrong count of avatars in the STableCellAvatars (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryo-gk committed Oct 27, 2023
1 parent 7225967 commit 60f2ef6
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 60f2ef6

Please sign in to comment.