Skip to content

Commit b032665

Browse files
Fixed wrong references in comment template
1 parent 0768d8f commit b032665

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bin/themes/default/partials/comment.hbs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{{#with comment}}
22
{{#if hasVisibleComponent}}
33
<div class="tsd-comment tsd-typography">
4-
{{#if comment.shortText}}
4+
{{#if shortText}}
55
<div class="lead">
6-
{{#markdown}}{{{comment.shortText}}}{{/markdown}}
6+
{{#markdown}}{{{shortText}}}{{/markdown}}
77
</div>
88
{{/if}}
9-
{{#if comment.text}}
10-
{{#markdown}}{{{comment.text}}}{{/markdown}}
9+
{{#if text}}
10+
{{#markdown}}{{{text}}}{{/markdown}}
1111
{{/if}}
12-
{{#if comment.tags}}
12+
{{#if tags}}
1313
<dl class="tsd-comment-tags">
14-
{{#each comment.tags}}
14+
{{#each tags}}
1515
<dt>{{tagName}}</dt>
1616
<dd>{{#markdown}}{{{text}}}{{/markdown}}</dd>
1717
{{/each}}

0 commit comments

Comments
 (0)