This is an automated email from the ASF dual-hosted git repository. bbovenzi pushed a commit to branch show-taskinstance-map-index in repository https://gitbox.apache.org/repos/asf/airflow.git
commit fcf7b8294d83897890fb9818dbdd908694c6cc22 Author: Brent Bovenzi <[email protected]> AuthorDate: Wed Feb 23 18:38:09 2022 -0500 use markup for blank value --- airflow/www/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/www/views.py b/airflow/www/views.py index f3a2468..96186c1 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -4685,7 +4685,7 @@ class TaskInstanceModelView(AirflowPrivilegeVerifierModelView): """Only show indices of mapped tasks""" map_index = self.get('map_index') if map_index < 0: - return ' ' + return Markup(" ") return None formatters_columns = {
