Fix mapped task instance links without start date#68194
Merged
Conversation
2 tasks
choo121600
approved these changes
Jun 8, 2026
Contributor
Author
Thanks for the review and approval. |
bbovenzi
approved these changes
Jun 8, 2026
Contributor
Backport successfully created: v3-2-testNote: As of Merging PRs targeted for Airflow 3.X In matter of doubt please ask in #release-management Slack channel.
|
github-actions Bot
pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Jun 8, 2026
aws-airflow-bot
pushed a commit
to aws-mwaa/upstream-to-airflow
that referenced
this pull request
Jun 8, 2026
Contributor
|
Cool! Thanks for the fix! |
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.
The Task Instances table only let you reach a mapped task instance through the Start Date column. When an instance had not started yet (
queued/scheduled), Start Date was empty, so the row had no clickable target and those instances were hard to reach — you had to go up to the run and click through the task list instead.The Map Index cell now links to the mapped task instance details page for mapped rows (
map_index >= 0), built from the row's own task instance identity. Because Map Index is always present (even before the task starts), queued/scheduled mapped instances are now reachable directly. Non-mapped rows (map_index == -1) stay plain text, and the link renders in every context the table is used in (mapped-task view, run task list, and the Browse view).closes: #68177
Manual verification
Before
After
Tests
pnpm vitest run src/pages/TaskInstances/TaskInstances.test.tsxpnpm eslint --quiet src/pages/TaskInstances/TaskInstances.tsx src/pages/TaskInstances/TaskInstances.test.tsxpnpm tsc -p tsconfig.app.json --noEmitWas generative AI tooling used to co-author this PR?