Kaynağa Gözat

滚动到中间

visuddhinanda 2 yıl önce
ebeveyn
işleme
0c91df54b1

+ 4 - 1
dashboard/src/components/discussion/DiscussionTopicChildren.tsx

@@ -46,7 +46,10 @@ const DiscussionTopicChildrenWidget = ({
   useEffect(() => {
     if (loading === false) {
       const ele = document.getElementById(`answer-${focus}`);
-      ele?.scrollIntoView();
+      ele?.scrollIntoView({
+        behavior: "smooth",
+        block: "center",
+      });
       console.log("after render");
     }
   });