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

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new b2962a3ca12 Fix sidebar visibility issue when main content exceeds 
viewport height (#59660)
b2962a3ca12 is described below

commit b2962a3ca12b0d1c0e0271e046272265d9d9a585
Author: Yeonguk Choo <[email protected]>
AuthorDate: Fri Jan 9 04:59:27 2026 +0900

    Fix sidebar visibility issue when main content exceeds viewport height 
(#59660)
---
 airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx 
b/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx
index 6fd189cb152..1f2574cc858 100644
--- a/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx
+++ b/airflow-core/src/airflow/ui/src/layouts/BaseLayout.tsx
@@ -53,7 +53,15 @@ export const BaseLayout = ({ children }: PropsWithChildren) 
=> {
   return (
     <LocaleProvider locale={i18n.language || "en"}>
       <Nav />
-      <Box _ltr={{ ml: 20 }} _rtl={{ mr: 20 }} display="flex" 
flexDirection="column" h="100vh" p={3}>
+      <Box
+        _ltr={{ ml: 20 }}
+        _rtl={{ mr: 20 }}
+        display="flex"
+        flexDirection="column"
+        h="100vh"
+        overflowY="auto"
+        p={3}
+      >
         {children ?? <Outlet />}
       </Box>
     </LocaleProvider>

Reply via email to