Переглянути джерело

The mobile terminal ishitbottom does not perform -10

reece00 1 рік тому
батько
коміт
4d3fdbdd80
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      app/components/chat.tsx

+ 1 - 1
app/components/chat.tsx

@@ -935,7 +935,7 @@ function _Chat() {
 
 
     const isTouchTopEdge = e.scrollTop <= edgeThreshold;
     const isTouchTopEdge = e.scrollTop <= edgeThreshold;
     const isTouchBottomEdge = bottomHeight >= e.scrollHeight - edgeThreshold;
     const isTouchBottomEdge = bottomHeight >= e.scrollHeight - edgeThreshold;
-    const isHitBottom = bottomHeight >= e.scrollHeight - 10;
+    const isHitBottom = bottomHeight >= e.scrollHeight - (isMobileScreen ? 0 : 10);
 
 
     const prevPageMsgIndex = msgRenderIndex - CHAT_PAGE_SIZE;
     const prevPageMsgIndex = msgRenderIndex - CHAT_PAGE_SIZE;
     const nextPageMsgIndex = msgRenderIndex + CHAT_PAGE_SIZE;
     const nextPageMsgIndex = msgRenderIndex + CHAT_PAGE_SIZE;