Skip to content

Fix long param names overflowing Trigger DAG modal Body:#67859

Draft
shashbha14 wants to merge 2 commits into
apache:mainfrom
shashbha14:fix/trigger-dag-long-param-name-overflow-67851
Draft

Fix long param names overflowing Trigger DAG modal Body:#67859
shashbha14 wants to merge 2 commits into
apache:mainfrom
shashbha14:fix/trigger-dag-long-param-name-overflow-67851

Conversation

@shashbha14
Copy link
Copy Markdown
Contributor

Closes #67851
When a DAG param has a very long key name, the label was overflowing the Trigger DAG modal and breaking the layout.
The 'flexBasis: "30%"' was being set on the 'Field.Label' element instead of its 'Stack' parent, so it had no effect on the flex layout — the label column just grew to fit whatever content was inside it. Added 'minWidth: 0' to the 'Stack' so it can shrink properly, moved 'flexBasis' there, and added 'wordBreak="break-word"' on the label so long names wrap within the column instead of overflowing.

I used Claude (claude.ai) as an AI assistant for parts of this implementation.

@boring-cyborg boring-cyborg Bot added the area:UI Related to UI/UX. For Frontend Developers. label Jun 1, 2026
@pedro-cf
Copy link
Copy Markdown

pedro-cf commented Jun 2, 2026

Hi @shashbha14 , thank you for your work, might be worth taking a look at this related issue: #67852

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area:UI Related to UI/UX. For Frontend Developers.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Trigger DAG modal: long param names overflow modal width

2 participants