You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "sanjurm16 (via GitHub)" <gi...@apache.org> on 2023/07/12 19:08:35 UTC

[GitHub] [airflow] sanjurm16 commented on a diff in pull request #32565: Fix rendering of dagRunTImeout

sanjurm16 commented on code in PR #32565:
URL: https://github.com/apache/airflow/pull/32565#discussion_r1261616394


##########
airflow/www/static/js/dag/details/Dag.tsx:
##########
@@ -291,6 +292,19 @@ const Dag = () => {
                   )}
                 </Td>
               </Tr>
+              <Tr>
+                <Td>Dag run timeout</Td>
+                <Td>
+                  {dagDetailsData.dagRunTimeout?.type === undefined ? (
+                    <Text>null</Text>
+                  ) : (
+                    // for TimeDelta and RelativeDelta
+                    <ViewScheduleInterval

Review Comment:
   Makes sense. Let me take a look and make the change. Cheers.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org