dstandish commented on code in PR #25175:
URL: https://github.com/apache/airflow/pull/25175#discussion_r926809274
##########
airflow/www/views.py:
##########
@@ -5330,6 +5330,14 @@ def _calculate_graph(self):
@staticmethod
def _node_dict(node_id, label, node_class):
+ def trunc_uri(val):
+ if len(val) > 25:
+ return val[0:23] + '...'
Review Comment:
Yes, it is the node I'd, but I'm not sure if that makes it into dom. I tried
looking but didn't see?
--
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]