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 ce78c786034 Fix long param names overflowing Trigger DAG modal Body:
(#67859)
ce78c786034 is described below
commit ce78c786034ca6c698e92265b902f40bf34405a4
Author: Shashwati Bhattacharyaa <[email protected]>
AuthorDate: Wed Jun 3 19:57:06 2026 +0530
Fix long param names overflowing Trigger DAG modal Body: (#67859)
* Fix long param names overflowing Trigger DAG modal
* Trigger CI re-run
---------
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>