Skip to content

Commit

Permalink
Fix display bug
Browse files Browse the repository at this point in the history
  • Loading branch information
carlobeltrame committed Feb 29, 2024
1 parent 7bfec3f commit f3dac1e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion resources/js/components/nameGame/NameGame.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export default {
...teamMember,
id: this.maxParticipantId + teamMember.id,
scout_name: teamMember.name,
name_and_group: teamMember.name,
})))
},
candidatesWithImage() {
Expand All @@ -95,7 +96,7 @@ export default {
anyDuplicateMembershipGroups() {
return 1 < Math.max(
...Object.values(countBy(
this.selectedParticipants.filter(participant => !!participant.group), 'group')
this.participants.filter(participant => !!participant.group), 'group')
)
)
},
Expand Down

0 comments on commit f3dac1e

Please sign in to comment.