Skip to content

Commit 7e13754

Browse files
committed
Fix lint
1 parent af3b493 commit 7e13754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/output/themes/default/templates/hierarchy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function fullHierarchy(
3737
{context.reflectionIcon(root)}
3838
{root.name}
3939
</a>
40-
{!!children.length ? <ul>{children}</ul> : null}
40+
{!!children.length && <ul>{children}</ul>}
4141
</li>
4242
);
4343
}

0 commit comments

Comments
 (0)