build(docs-infra): ensure private exported subclasses are not rendered (#40404)
Previously, only the first layer of sub-classes were filtered to remove private exports. But on recursing down further levels these were not filtered out. PR Close #40404
This commit is contained in:
parent
7a7dc89332
commit
59bcd45930
|
@ -4,7 +4,7 @@
|
||||||
{% for descendant in descendants %}
|
{% for descendant in descendants %}
|
||||||
<li>
|
<li>
|
||||||
<code>{$ descendant.name $}</code>
|
<code>{$ descendant.name $}</code>
|
||||||
{$ renderDescendantList(descendant.descendants | filterByPropertyValue('docType', docTypeMatcher), docType, recursed, docTypeMatcher) $}
|
{$ renderDescendantList(descendant.descendants | filterByPropertyValue('docType', docTypeMatcher) | filterByPropertyValue('privateExport', undefined), docType, recursed, docTypeMatcher) $}
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
Loading…
Reference in New Issue