This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a commit to branch v2-11-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/v2-11-test by this push:
     new 1fae38552c1 changes (#65077)
1fae38552c1 is described below

commit 1fae38552c184cf20112c9aa5ca9e3d892f9e795
Author: Piyush Mudgal <[email protected]>
AuthorDate: Tue Apr 14 22:54:42 2026 +0530

    changes (#65077)
---
 airflow/www/static/js/dag/details/gantt/InstanceBar.tsx          | 1 +
 airflow/www/static/js/dag/details/taskInstance/Logs/LogBlock.tsx | 9 +++------
 airflow/www/static/js/dag/grid/dagRuns/Bar.tsx                   | 3 ++-
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/airflow/www/static/js/dag/details/gantt/InstanceBar.tsx 
b/airflow/www/static/js/dag/details/gantt/InstanceBar.tsx
index 840604288c9..1f02111110a 100644
--- a/airflow/www/static/js/dag/details/gantt/InstanceBar.tsx
+++ b/airflow/www/static/js/dag/details/gantt/InstanceBar.tsx
@@ -97,6 +97,7 @@ const InstanceBar = ({
       portalProps={{ containerRef }}
       placement="top"
       openDelay={hoverDelay}
+      zIndex="tooltip"
     >
       <Flex
         position="absolute"
diff --git a/airflow/www/static/js/dag/details/taskInstance/Logs/LogBlock.tsx 
b/airflow/www/static/js/dag/details/taskInstance/Logs/LogBlock.tsx
index ab33c5b4169..9072027e75d 100644
--- a/airflow/www/static/js/dag/details/taskInstance/Logs/LogBlock.tsx
+++ b/airflow/www/static/js/dag/details/taskInstance/Logs/LogBlock.tsx
@@ -39,14 +39,12 @@ const LogBlock = ({
   const [autoScroll, setAutoScroll] = useState(true);
 
   const logBoxRef = useRef<HTMLPreElement>(null);
-  const codeBlockBottomDiv = useRef<HTMLDivElement>(null);
   const offsetTop = useOffsetTop(logBoxRef);
 
   const scrollToBottom = () => {
-    codeBlockBottomDiv.current?.scrollIntoView({
-      block: "nearest",
-      inline: "nearest",
-    });
+    if (logBoxRef.current) {
+      logBoxRef.current.scrollTop = logBoxRef.current.scrollHeight;
+    }
   };
 
   useEffect(() => {
@@ -122,7 +120,6 @@ const LogBlock = ({
     >
       {/* eslint-disable-next-line react/no-danger */}
       <div dangerouslySetInnerHTML={{ __html: parsedLogs }} />
-      <div ref={codeBlockBottomDiv} />
     </Code>
   );
 };
diff --git a/airflow/www/static/js/dag/grid/dagRuns/Bar.tsx 
b/airflow/www/static/js/dag/grid/dagRuns/Bar.tsx
index c6395084a74..01ca5b5cd6a 100644
--- a/airflow/www/static/js/dag/grid/dagRuns/Bar.tsx
+++ b/airflow/www/static/js/dag/grid/dagRuns/Bar.tsx
@@ -125,6 +125,7 @@ const DagRunBar = ({
           placement="top"
           openDelay={hoverDelay}
           maxW="md"
+          zIndex="tooltip"
         >
           <Flex
             width="10px"
@@ -159,7 +160,7 @@ const DagRunBar = ({
           top="0"
           left="8px"
           spacing={0}
-          zIndex={0}
+          zIndex={2}
           width={0}
         >
           <Text

Reply via email to