This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new a1f8f947fbf Fix Advanced Search button overlap in DAG List View
(#56588) (#56777)
a1f8f947fbf is described below
commit a1f8f947fbf9ad9da9acb0d29444ed606417e823
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Mon Oct 20 15:22:23 2025 +0200
Fix Advanced Search button overlap in DAG List View (#56588) (#56777)
(cherry picked from commit 3383e777e915de568f6ac114d5d5f8cd4f89cb42)
Co-authored-by: Jakub Orłowski <[email protected]>
---
airflow-core/src/airflow/ui/src/components/SearchBar.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/src/components/SearchBar.tsx
b/airflow-core/src/airflow/ui/src/components/SearchBar.tsx
index 8a9d9547b85..fb2d192f617 100644
--- a/airflow-core/src/airflow/ui/src/components/SearchBar.tsx
+++ b/airflow-core/src/airflow/ui/src/components/SearchBar.tsx
@@ -85,7 +85,7 @@ export const SearchBar = ({
/>
) : undefined}
{Boolean(hideAdvanced) ? undefined : (
- <Button fontWeight="normal" height="1.75rem" variant="ghost"
width={140} {...buttonProps}>
+ <Button fontWeight="normal" height="1.75rem" variant="ghost"
{...buttonProps}>
{translate("search.advanced")}
</Button>
)}