diff --git a/airflow/www/views.py b/airflow/www/views.py index 5e8ef6bb7f08c..bb88da2cdfa9c 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -4024,6 +4024,17 @@ class XComModelView(AirflowModelView): list_columns = ["key", "value", "timestamp", "dag_id", "task_id", "run_id", "map_index", "execution_date"] base_order = ("dag_run_id", "desc") + order_columns = [ + "key", + "value", + "timestamp", + "dag_id", + "task_id", + "run_id", + "map_index", + # "execution_date", # execution_date sorting is not working and crashing the UI, disabled for now. + ] + base_filters = [["dag_id", DagFilter, list]] formatters_columns = {