You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-12-11 17:57:29 +03:00
Fix issue with tile error boundaries collapsing in bubbles layout (#7653)
This commit is contained in:
committed by
GitHub
parent
57a5647079
commit
074fec359b
@@ -772,7 +772,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
|
||||
const callEventGrouper = this.props.callEventGroupers.get(mxEv.getContent().call_id);
|
||||
// use txnId as key if available so that we don't remount during sending
|
||||
ret.push(
|
||||
<TileErrorBoundary key={mxEv.getTxnId() || eventId} mxEvent={mxEv}>
|
||||
<TileErrorBoundary key={mxEv.getTxnId() || eventId} mxEvent={mxEv} layout={this.props.layout}>
|
||||
<EventTile
|
||||
as="li"
|
||||
ref={this.collectEventTile.bind(this, eventId)}
|
||||
|
||||
Reference in New Issue
Block a user