Skip to content

Commit

Permalink
Display endDate in task instance tooltip. (apache#39547)
Browse files Browse the repository at this point in the history
  • Loading branch information
tirkarthi authored and pateash committed May 13, 2024
1 parent 4f14039 commit aa701e8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions airflow/www/static/js/dag/InstanceTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@ const InstanceTooltip = ({
<Text>
Started: <Time dateTime={startDate} />
</Text>
{endDate && (
<Text>
Ended: <Time dateTime={endDate} />
</Text>
)}
<Text>
Duration: {formatDuration(getDuration(startDate, endDate))}
</Text>
Expand Down

0 comments on commit aa701e8

Please sign in to comment.