This is an automated email from the ASF dual-hosted git repository.
bbovenzi pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 467ee0d618f [v3-2-test] Fix long param names overflowing Trigger DAG
modal Body: (#67859) (#67963)
467ee0d618f is described below
commit 467ee0d618f5275aae76caf0c833de9a8054de3c
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Jun 3 14:35:04 2026 -0400
[v3-2-test] Fix long param names overflowing Trigger DAG modal Body:
(#67859) (#67963)
* Fix long param names overflowing Trigger DAG modal
* Trigger CI re-run
---------
(cherry picked from commit ce78c786034ca6c698e92265b902f40bf34405a4)
Co-authored-by: Shashwati Bhattacharyaa
<[email protected]>
Co-authored-by: Shashwati <[email protected]>
---
airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldRow.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldRow.tsx
b/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldRow.tsx
index 4dc59a471e8..ffb3889561b 100644
--- a/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldRow.tsx
+++ b/airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldRow.tsx
@@ -59,8 +59,8 @@ export const FieldRow = ({
return (
<Field.Root invalid={!isValid} orientation="horizontal"
required={isRequired(param)}>
- <Stack>
- <Field.Label fontSize="md" style={{ flexBasis: "30%" }}>
+ <Stack minWidth={0} style={{ flexBasis: "30%" }}>
+ <Field.Label fontSize="md" wordBreak="break-word">
{param.schema.title ?? name} <Field.RequiredIndicator />
</Field.Label>
</Stack>