This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v3-1-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 8209d737b1e2316d51825e1ffd04fa10f9d71ce9 Author: Harsh Thakur <[email protected]> AuthorDate: Sat Jan 3 20:24:31 2026 +0530 Fix text overflow issue (#60080) (cherry picked from commit e3345fdf79a50bb3e6009f776f2151b47c1ec8c6) --- airflow-core/src/airflow/ui/src/components/ui/InputWithAddon.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/airflow-core/src/airflow/ui/src/components/ui/InputWithAddon.tsx b/airflow-core/src/airflow/ui/src/components/ui/InputWithAddon.tsx index b5a49e6cdf8..52e88ce757d 100644 --- a/airflow-core/src/airflow/ui/src/components/ui/InputWithAddon.tsx +++ b/airflow-core/src/airflow/ui/src/components/ui/InputWithAddon.tsx @@ -36,7 +36,8 @@ export const InputWithAddon = React.forwardRef<HTMLInputElement, InputWithAddonP borderColor="border" borderRadius="full" display="flex" - width={width} + minWidth={width} + width="auto" > <Text bg="gray.muted"
