This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 2864f841a7 Display endDate in task instance tooltip. (#39547)
2864f841a7 is described below

commit 2864f841a7bf1be4621db52f80bf8734abb59c75
Author: Karthikeyan Singaravelan <tir.kar...@gmail.com>
AuthorDate: Sun May 12 21:50:26 2024 +0530

    Display endDate in task instance tooltip. (#39547)
---
 airflow/www/static/js/dag/InstanceTooltip.tsx | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/airflow/www/static/js/dag/InstanceTooltip.tsx 
b/airflow/www/static/js/dag/InstanceTooltip.tsx
index 335a7c1918..cfdd0be13e 100644
--- a/airflow/www/static/js/dag/InstanceTooltip.tsx
+++ b/airflow/www/static/js/dag/InstanceTooltip.tsx
@@ -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>

Reply via email to