Skip to content

Commit

Permalink
Add dttm searchable field in audit log (apache#23794)
Browse files Browse the repository at this point in the history
  • Loading branch information
humit0 authored May 19, 2022
1 parent 46abf37 commit a45d15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4772,7 +4772,7 @@ class LogModelView(AirflowModelView):
]

list_columns = ['id', 'dttm', 'dag_id', 'task_id', 'event', 'execution_date', 'owner', 'extra']
search_columns = ['dag_id', 'task_id', 'event', 'execution_date', 'owner', 'extra']
search_columns = ['dttm', 'dag_id', 'task_id', 'event', 'execution_date', 'owner', 'extra']

label_columns = {
'execution_date': 'Logical Date',
Expand Down

0 comments on commit a45d15d

Please sign in to comment.