浏览代码

fix(chat): workaround for chat scroll causing layout misalignment

master
Leonard Kim 6 年前
父节点
当前提交
c0e9f2b95a
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2
    1
      react/features/chat/components/web/MessageContainer.js

+ 2
- 1
react/features/chat/components/web/MessageContainer.js 查看文件

@@ -100,7 +100,8 @@ export default class MessageContainer extends AbstractMessageContainer {
100 100
      */
101 101
     scrollToBottom(withAnimation: boolean) {
102 102
         this._messagesListEndRef.current.scrollIntoView({
103
-            behavior: withAnimation ? 'smooth' : 'auto'
103
+            behavior: withAnimation ? 'smooth' : 'auto',
104
+            block: 'nearest'
104 105
         });
105 106
     }
106 107
 

正在加载...
取消
保存