Skip to content

Commit

Permalink
fix: Agenda detail : webconf no displayed when accessing from agenda …
Browse files Browse the repository at this point in the history
…timeline - EXO-74164

Before this fix, when a user click on an event in agenda timeline, the conference link is not displayed if the event have one
This is because when opening the event from the timeline, the webconf providers are not refreshed from the space of the event like it is the case in the agenda standalone application
This commit ensure agendaTimeline to react on event agenda-event-change-owner, and then reload providers for the space of the selected event
  • Loading branch information
rdenarie committed Oct 3, 2024
1 parent b8ca9a7 commit fa93ed1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ export default {
this.$root.$on('agenda-refresh', this.retrieveEvents);
this.$root.$on('agenda-event-saved', this.retrieveEvents);
this.$root.$on('agenda-event-deleted', this.retrieveEvents);
this.$root.$on('agenda-event-change-owner', this.refreshProviders);
this.spaceId = eXo.env.portal.spaceId;
Expand Down

0 comments on commit fa93ed1

Please sign in to comment.