mirror of https://github.com/vector-im/riot-web
Merge pull request #5621 from SimonBrandner/fix-jump-on-reaction
Don't jump to bottom on reactionpull/21833/head
commit
295cf12cf8
|
@ -229,7 +229,7 @@ export default class MessagePanel extends React.Component {
|
|||
|
||||
onAction = (payload) => {
|
||||
switch (payload.action) {
|
||||
case "message_sent":
|
||||
case "scroll_to_bottom":
|
||||
this.scrollToBottom();
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -403,6 +403,7 @@ export default class SendMessageComposer extends React.Component {
|
|||
this._editorRef.clearUndoHistory();
|
||||
this._editorRef.focus();
|
||||
this._clearStoredEditorState();
|
||||
dis.dispatch({action: "scroll_to_bottom"});
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
|
|
Loading…
Reference in New Issue