Skip to content

Commit

Permalink
Fix details tab not showing when using dynamic task mapping (#36522)
Browse files Browse the repository at this point in the history
* Fix details tab not showing when using dynamic task mapping

* Remove unnecessary variable
  • Loading branch information
shohamy7 committed Jan 3, 2024
1 parent 223a984 commit 18b7013
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/static/js/dag/details/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ const Details = ({
<TabPanel height="100%">
{isDag && <DagContent />}
{isDagRun && <DagRunContent runId={runId} />}
{isTaskInstance && (
{!!runId && !!taskId && (
<>
<BackToTaskSummary
isMapIndexDefined={mapIndex !== undefined && mapIndex > -1}
Expand Down

0 comments on commit 18b7013

Please sign in to comment.