Skip to content

Commit 06fb11e

Browse files
committed
Fix augments tag
1 parent 48b8c6b commit 06fb11e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

default-theme/section._

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@
2121
<p>
2222
Extends
2323
<% if (section.augments) { %>
24-
<%= autolink(section.name) %>
24+
<%= section.augments.map(function(tag) {
25+
return autolink(tag.name);
26+
}).join(', ') %>
2527
<% } %>
2628
</p>
2729
<% } %>

0 commit comments

Comments
 (0)