Skip to content

Commit

Permalink
Remove sunset versions from comparison tables
Browse files Browse the repository at this point in the history
  • Loading branch information
erinkcochran87 committed Apr 28, 2020
1 parent 8d9b21c commit d139967
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h3 id="supported-features">{{ display_name }} version comparison</h3>
</td>
{% for version in released-versions %}
{% for integration in all-versioned-docs %}
{% if version.number == integration.this-version %}
{% if version.number == integration.this-version and version.status != "sunset" %}
<td class="table-subheading">
<strong>{{ display_name }}<br>
<a href="{{ integration.url | prepend: site.baseurl }}">version {{ version.number }}</a></strong>
Expand Down Expand Up @@ -63,7 +63,7 @@ <h3 id="supported-features">{{ display_name }} version comparison</h3>
<!-- Feature value columns -->
{% for version in released-versions %}
{% for integration in all-versioned-docs %}
{% if version.number == integration.this-version %}
{% if version.number == integration.this-version and version.status != "sunset" %}
<td>
{{ attribute.field-value | flatify | markdownify }}
</td>
Expand Down

0 comments on commit d139967

Please sign in to comment.