diff --git a/src/components/BreakoutRoomsEditor/BreakoutRoomsEditor.vue b/src/components/BreakoutRoomsEditor/BreakoutRoomsEditor.vue index a784b0bdcf0..9ffc47bd8ce 100644 --- a/src/components/BreakoutRoomsEditor/BreakoutRoomsEditor.vue +++ b/src/components/BreakoutRoomsEditor/BreakoutRoomsEditor.vue @@ -38,24 +38,26 @@ max="20"> - - {{ t('spreed', 'Automatically assign participants') }} - - - {{ t('spreed', 'Manually assign participants') }} - - - {{ t('spreed', 'Allow participants to choose') }} - +
+ + {{ t('spreed', 'Automatically assign participants') }} + + + {{ t('spreed', 'Manually assign participants') }} + + + {{ t('spreed', 'Allow participants to choose') }} + +
diff --git a/src/components/BreakoutRoomsEditor/BreakoutRoomsParticipantsEditor.vue b/src/components/BreakoutRoomsEditor/BreakoutRoomsParticipantsEditor.vue index 25e5153ebd7..5d474162930 100644 --- a/src/components/BreakoutRoomsEditor/BreakoutRoomsParticipantsEditor.vue +++ b/src/components/BreakoutRoomsEditor/BreakoutRoomsParticipantsEditor.vue @@ -82,6 +82,7 @@ {{ resetButtonLabel }} {{ confirmButtonLabel }} @@ -204,6 +205,10 @@ export default { return this.isReorganizingAttendees ? t('spreed', 'Confirm') : t('spreed', 'Create breakout rooms') }, + confirmButtonType() { + return this.hasUnassigned ? 'secondary' : 'primary' + }, + resetButtonLabel() { return t('spreed', 'Reset') },