Skip to content

Commit

Permalink
fixing 404 for other module types (#3313)
Browse files Browse the repository at this point in the history
  • Loading branch information
bretg authored Oct 2, 2021
1 parent bc15dc7 commit 04187d3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-docs/modules/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ than others. See [the realTimeData setConfig](/dev-docs/publisher-api-reference/
<tbody>
{% for page in module_pages %}{% if page.recommended == true or page.vendor_specific == true %}{% continue %}{% endif %}
<tr>
<td><a href="/dev-docs/modules/{{page.module_code}}.html"><strong>{{page.display_name}}</strong></a></td>
<td><a href="{{page.url}}"><strong>{{page.display_name}}</strong></a></td>
<td>{{page.description}}</td>
{% if page.module_type == "rtd" %}<td>yes</td>{% else %}<td>no</td>{% endif %}
</tr>
Expand All @@ -80,7 +80,7 @@ These modules may require accounts with a service provider.
<tbody>
{% for page in module_pages %}{% if page.recommended == true %}{% continue %}{% endif %}{% if page.vendor_specific == true %}
<tr>
<td><a href="/dev-docs/modules/{{page.module_code}}.html"><strong>{{page.display_name}}</strong></a></td>
<td><a href="{{page.url}}"><strong>{{page.display_name}}</strong></a></td>
<td>{{page.description}}</td>
{% if page.module_type == "rtd" %}<td>yes</td>{% else %}<td>no</td>{% endif %}
</tr>
Expand Down

0 comments on commit 04187d3

Please sign in to comment.