Skip to content

Commit

Permalink
Fixed duplicate rendering of reflection flags
Browse files Browse the repository at this point in the history
Resolves #2385
  • Loading branch information
Gerrit0 committed Sep 3, 2023
1 parent bd54dc0 commit aefeac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- `@property` now works as expected if used to override a method's documentation.
- `--watch` mode works again, #2378.
- Improved support for optional names within JSDoc types, #2384.
- Fixed duplicate rendering of reflection flags on signature parameters, #2385.

### Thanks!

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function memberSignatureBody(
)}
</h5>
{context.commentSummary(item)}
{context.reflectionFlags(item)}
{context.commentTags(item)}
{item.type instanceof ReflectionType && context.parameter(item.type.declaration)}
</li>
))}
Expand Down

0 comments on commit aefeac0

Please sign in to comment.