Browse Source
fix: patch payload type for event-bus
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
pull/11894/head
Maksim Sukharev
2 years ago
No known key found for this signature in database
GPG Key ID: 6349D071889BD1D5
1 changed files with
2 additions and
1 deletions
-
src/stores/breakoutRooms.ts
|
|
|
@ -131,7 +131,8 @@ export const useBreakoutRoomsStore = defineStore('breakoutRooms', { |
|
|
|
await this.fetchBreakoutRoomsParticipants(token) |
|
|
|
|
|
|
|
// Open the sidebar and switch to the breakout rooms tab
|
|
|
|
emit('spreed:select-active-sidebar-tab', 'breakout-rooms') |
|
|
|
// FIXME upstream https://github.com/nextcloud-libraries/nextcloud-event-bus/pull/734
|
|
|
|
emit('spreed:select-active-sidebar-tab', 'breakout-rooms' as unknown as object) |
|
|
|
store.dispatch('showSidebar') |
|
|
|
} catch (error) { |
|
|
|
console.error(error) |
|
|
|
|