uranusjr commented on code in PR #31455:
URL: https://github.com/apache/airflow/pull/31455#discussion_r1200108675


##########
airflow/www/views.py:
##########
@@ -5531,7 +5531,15 @@ class 
TaskInstanceModelView(AirflowPrivilegeVerifierModelView):
     ]
 
     order_columns = [
-        item for item in list_columns if item not in ["try_number", "log_url", 
"external_executor_id"]
+        item
+        for item in list_columns
+        if item
+        not in [
+            "try_number",
+            "log_url",
+            "external_executor_id",
+            "note",  # todo: maybe figure out how to re-enable this
+        ]
     ]

Review Comment:
   Instead of doing this dance I’d recommend simply listing the columns.



-- 
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]

Reply via email to