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 731b6160d9 fixing the tz in next run id info (#38482)
731b6160d9 is described below

commit 731b6160d99d416f5db742d549242b60d72f6151
Author: Bowrna <[email protected]>
AuthorDate: Wed Mar 27 19:41:06 2024 +0530

    fixing the tz in next run id info (#38482)
---
 airflow/www/templates/airflow/dag.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/airflow/www/templates/airflow/dag.html 
b/airflow/www/templates/airflow/dag.html
index 4e511a6854..59754347d0 100644
--- a/airflow/www/templates/airflow/dag.html
+++ b/airflow/www/templates/airflow/dag.html
@@ -152,7 +152,7 @@
         {% endif %}
         {% if dag_model is defined and dag_model.next_dagrun is defined and 
dag_model.schedule_interval != 'Dataset' %}
           <p class="label label-default js-tooltip" style="margin-left: 5px" 
id="next-run" data-html="true" data-placement="bottom">
-            Next Run ID: <time datetime="{{ dag_model.next_dagrun }}">{{ 
dag_model.next_dagrun }}</time>
+            Next Run ID: <time datetime="{{ dag_model.next_dagrun }}" 
data-with-tz="true">{{ dag_model.next_dagrun }}</time>
           </p>
         {% endif %}
         {% if dag_model is defined and dag_model.schedule_interval is defined 
and dag_model.schedule_interval == 'Dataset' %}

Reply via email to