This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun 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 0cd76c07e1a Fix task log filters not working in fullscreen mode #62699
(#62747)
0cd76c07e1a is described below
commit 0cd76c07e1a2465b1520306e277b5729695f753b
Author: Haseeb Malik <[email protected]>
AuthorDate: Fri Mar 6 06:41:18 2026 -0500
Fix task log filters not working in fullscreen mode #62699 (#62747)
---
airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/Logs.tsx | 2 +-
.../src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogHeader.tsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/Logs.tsx
b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/Logs.tsx
index d5fd32a8306..681a92e68e3 100644
--- a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/Logs.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/Logs.tsx
@@ -198,7 +198,7 @@ export const Logs = () => {
<Heading mb={2} size="xl">
{taskId}
</Heading>
- <TaskLogHeader {...logHeaderProps} />
+ <TaskLogHeader {...logHeaderProps} isFullscreen />
</Box>
</Dialog.Header>
diff --git
a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogHeader.tsx
b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogHeader.tsx
index 840d79aef0d..908ad9f392c 100644
--- a/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogHeader.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/TaskInstance/Logs/TaskLogHeader.tsx
@@ -192,7 +192,7 @@ export const TaskLogHeader = ({
<Select.Trigger clearable>
<Select.ValueText placeholder={translate("dag:logs.allSources")}
/>
</Select.Trigger>
- <Select.Content>
+ <Select.Content zIndex={zIndex}>
{sourceOptionList.items.map((option) => (
<Select.Item item={option} key={option.label}>
{option.label}