Prevent soft crash when sending a thread message (#7467)
parent
325e2ba99b
commit
76839ec42e
|
@ -590,7 +590,7 @@ class TimelinePanel extends React.Component<IProps, IState> {
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState<null>(updatedState, () => {
|
this.setState<null>(updatedState, () => {
|
||||||
this.messagePanel.current.updateTimelineMinHeight();
|
this.messagePanel.current?.updateTimelineMinHeight();
|
||||||
if (callRMUpdated) {
|
if (callRMUpdated) {
|
||||||
this.props.onReadMarkerUpdated?.();
|
this.props.onReadMarkerUpdated?.();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue