Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Breakout rooms mixed up in participants editor #11921

Closed
Antreesy opened this issue Mar 25, 2024 · 0 comments · Fixed by #12201
Closed

Breakout rooms mixed up in participants editor #11921

Antreesy opened this issue Mar 25, 2024 · 0 comments · Fixed by #12201

Comments

@Antreesy
Copy link
Contributor

Technically, only names could be mixed up, though still confusing. Could happen because of different sorting order of room tokens (2 goes before 1 in alphabetic order).

image

  • Sort rooms by display names, not by token
  • Don't calculate display names manually, use provided by server:
    <template v-for="(item, index) in assignments">
    <BreakoutRoomItem :key="index"
    class="participants-editor__section"
    :name="roomName(index)">
    <SelectableParticipant v-for="attendeeId in item"
    :key="attendeeId"
    :value="assignments"
    :checked.sync="selectedParticipants"
    :participant="attendeesById[attendeeId]" />
    </BreakoutRoomItem>
    </template>

Originally posted by @DorraJaouad in #11649 (review)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant