fix copy event in breakout panel

This commit is contained in:
Ramón Souza 2023-06-16 13:04:05 -03:00
parent 0b1a7fbd82
commit 026cc92a17

View File

@ -555,7 +555,7 @@ class BreakoutRoom extends PureComponent {
isRTL,
} = this.props;
return (
<Styled.Panel ref={(n) => this.panel = n}>
<Styled.Panel ref={(n) => this.panel = n} onCopy={(e) => { e.stopPropagation(); }}>
<Header
leftButtonProps={{
'aria-label': intl.formatMessage(intlMessages.breakoutAriaTitle),