Skip to content

Commit

Permalink
PLAT-9652: tmpl: fix link tag usage in see tags (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Knights authored Oct 22, 2024
1 parent 160da77 commit 3715012
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tmpl/details.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ var self = this;
<dt class="tag-see">See:</dt>
<dd class="tag-see">
<ul><?js see.forEach(function(s) { ?>
<li><?js= self.linkto(s) ?></li>
<li><?js= s.includes('@link') ? s : self.linkto(s) ?></li>
<?js }); ?></ul>
</dd>
<?js } ?>
Expand Down

0 comments on commit 3715012

Please sign in to comment.