ashb commented on a change in pull request #16931:
URL: https://github.com/apache/airflow/pull/16931#discussion_r669419936
##########
File path: airflow/www/views.py
##########
@@ -619,6 +619,9 @@ def index(self):
dag.can_edit = (permissions.ACTION_CAN_EDIT,
dag_resource_name) in user_permissions
dag.can_trigger = dag.can_edit and can_create_dag_run
dag.can_delete = can_delete_dag
+ dag.schedule_interval_description =
wwwutils.get_schedule_interval_description(
+ dag.schedule_interval
+ )
Review comment:
Agreed, especially since the basic timetable framework is already merged
in to main branch.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]