Align Trigger DAG params in grid layout#67905
Closed
Codingaditya17 wants to merge 1 commit into
apache:mainapache/airflow:mainfrom
Codingaditya17:fix-trigger-dag-param-grid-layoutCodingaditya17/airflow:fix-trigger-dag-param-grid-layoutCopy head branch name to clipboard
Closed
Align Trigger DAG params in grid layout#67905Codingaditya17 wants to merge 1 commit intoapache:mainapache/airflow:mainfrom Codingaditya17:fix-trigger-dag-param-grid-layoutCodingaditya17/airflow:fix-trigger-dag-param-grid-layoutCopy head branch name to clipboard
Codingaditya17 wants to merge 1 commit into
apache:mainapache/airflow:mainfrom
Codingaditya17:fix-trigger-dag-param-grid-layoutCodingaditya17/airflow:fix-trigger-dag-param-grid-layoutCopy head branch name to clipboard
Conversation
Codingaditya17
requested review from
bbovenzi,
choo121600,
guan404ming,
pierrejeambrun,
ryanahamilton,
shubhamraj-git and
vatsrahul1001
as code owners
June 2, 2026 15:35
Codingaditya17
force-pushed
the
fix-trigger-dag-param-grid-layout
branch
from
June 2, 2026 15:36
01d0089 to
92b73b8
Compare
Codingaditya17
force-pushed
the
fix-trigger-dag-param-grid-layout
branch
from
June 2, 2026 18:33
92b73b8 to
3469c7b
Compare
Abdeltoto
approved these changes
Jun 3, 2026
Abdeltoto
left a comment
There was a problem hiding this comment.
Looks good to me. The change is nicely scoped to FieldRow, keeps the validation/helper/error rendering intact, and addresses the alignment problem described in #67852. CI is green.
Non-blocking: the Tested with code block in the PR description looks like it may be missing its closing backticks.
Contributor
Author
|
Thanks for the review and approval! I updated the PR description to close the |
|
Hi @Codingaditya17 , thank you for your work! I would keep in mind these incoming changes #67859 |
pierrejeambrun
marked this pull request as draft
June 3, 2026 12:33
Member
|
Closing in favor of #67859 that is ready to be merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Closes: #67852
This updates the FlexibleForm field row layout to use a responsive two-column grid.
The label is rendered in the left column and the field control is rendered in a dedicated right column, which keeps boolean switches and other controls aligned consistently across params with different label lengths.
Long labels are allowed to wrap safely with
overflowWrap="anywhere"and the layout falls back to a single column on smaller screens.Tested with:
cd airflow-core/src/airflow/ui PNPM_IGNORE_SCRIPTS=true pnpm lint