Make edge modulation steps more consistent

This commit is contained in:
Juno Takano 2026-01-12 14:34:55 -03:00
commit bd5d46a5d4
8 changed files with 227 additions and 118 deletions

View file

@ -25,7 +25,7 @@
{% if root_node.connections %}
{% if config.tree_node_summary %}<li><strong>Connections</strong>
<ul>{% endif %}
{% for connection in root_node.connections %}
{% for _, connection in root_node.connections %}
<li><a href="/node/{{connection.to}}">{{connection.to}}</a></li>
{% endfor %}
{% if config.tree_node_summary %}</ul>
@ -53,7 +53,7 @@
{% if node.connections %}
{% if config.tree_node_summary %}<li><strong>Connections</strong>
<ul>{% endif %}
{% for connection in node.connections %}
{% for _, connection in node.connections %}
{% if not connection.detached %}
<li><a href="/node/{{connection.to}}">{{connection.to}}</a></li>
{% endif %}