brain-buster edited a comment on issue #16976:
URL: https://github.com/apache/airflow/issues/16976#issuecomment-881871546
Reference: /airflow/www/views.py -> rendered_templates() method
In version 2.0.2:
```
if renderer in renderers:
if isinstance(content, (dict, list)):
content = json.dumps(content, sort_keys=True, indent=4)
html_dict[template_field] = renderers[renderer](content)
```
In version 2.1.2:
```
if renderer in renderers:
html_dict[template_field] = renderers[renderer](content)
```
--
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]