Skip to content
Snippets Groups Projects
Unverified Commit c7f6b819 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #11553 from Tainan404/issue-11530

Fix clear chat for single message
parents 5307f080 51c45e15
No related branches found
No related tags found
No related merge requests found
......@@ -118,6 +118,12 @@ class TimeWindowList extends PureComponent {
userScrolledBack: false,
}, ()=> setUserSentMessage(false));
}
// this condition exist to the case where the chat has a single message and the chat is cleared
// The component List from react-virtualized doesn't have a reference to the list of messages so I need force the update to fix it
if (lastTimeWindow?.id === 'SYSTEM_MESSAGE-PUBLIC_CHAT_CLEAR') {
this.listRef.forceUpdateGrid();
}
}
componentWillUnmount() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment