This is an automated email from the ASF dual-hosted git repository.
guan404ming pushed a commit to branch v3-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-3-test by this push:
new a9fd5b7a24d [v3-3-test] UI: Fix inconsistent padding between Dag Runs
and Task Instances list views (#68689) (#68692)
a9fd5b7a24d is described below
commit a9fd5b7a24df5db28be5ff9db15322eca14669c1
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Jun 18 23:41:26 2026 +0800
[v3-3-test] UI: Fix inconsistent padding between Dag Runs and Task
Instances list views (#68689) (#68692)
(cherry picked from commit d9b363c630ef3e658f71bb1f2506ae53e612286a)
Co-authored-by: Revanth <[email protected]>
---
.../ui/src/pages/TaskInstances/TaskInstancesFilter.tsx | 14 ++++++--------
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git
a/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstancesFilter.tsx
b/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstancesFilter.tsx
index 40b6c1c36fe..d3531224948 100644
---
a/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstancesFilter.tsx
+++
b/airflow-core/src/airflow/ui/src/pages/TaskInstances/TaskInstancesFilter.tsx
@@ -88,14 +88,12 @@ export const TaskInstancesFilter = () => {
});
return (
- <VStack align="start" justifyContent="space-between">
- <VStack alignItems="flex-start" gap={1}>
- <FilterBar
- configs={filterConfigs}
- initialValues={initialValues}
- onFiltersChange={handleFiltersChange}
- />
- </VStack>
+ <VStack align="start" gap={4} paddingY="4px">
+ <FilterBar
+ configs={filterConfigs}
+ initialValues={initialValues}
+ onFiltersChange={handleFiltersChange}
+ />
</VStack>
);
};