You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing the Outlook Calendar events list, I noticed that clicking the Join button for a meeting also triggers the parent click handler and opens the event modal. This happens because the entire event row (Box) has an onClick handler to open the event modal, and the click event from the Join button bubbles up to the parent element.
As a result, two actions occur simultaneously:
The meeting link opens (expected behavior).
The event modal also opens (unexpected behavior).
Steps to Reproduce
Open the Outlook Calendar sidebar in Rocket.Chat.
Locate any event with a Join button.
Click the Join button.
Current Behavior
The meeting link opens.
The event modal also opens due to event bubbling.
issue8.mp4
Expected Behavior
Clicking the Join button should only open the meeting link.