Skip to content

Commit

Permalink
FIX: What
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner committed May 20, 2024
1 parent 3ffd85d commit dcfd2fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/templates/python/material/attribute.html.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,16 @@
{% endblock contents %}

{# START NEW CODE #}
{% if pipeline_steps(attribute_name) %}
{% if pipeline_steps(attribute.name) %}
{# https://squidfunk.github.io/mkdocs-material/reference/admonitions/#collapsible-blocks #}
<details class="abstract">
<summary>Pipeline steps using this setting</summary>
<p>
The following steps are directly affected by changes to
<code>{{ attribute_name }}</code>:
<code>{{ attribute.name }}</code>:
</p>
<ul>
{% for step in pipeline_steps(attribute_name) %}
{% for step in pipeline_steps(attribute.name) %}
<li><code>{{ step }}</code></li>
{% endfor %}
</ul>
Expand Down

0 comments on commit dcfd2fd

Please sign in to comment.