Navigation: show section toggle if there are any react children (#60336)

show section toggle if there are children
This commit is contained in:
Ashley Harrison 2022-12-15 12:41:46 +00:00 committed by GitHub
parent 3cfeac9c5a
commit b2da0d22af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,7 +56,7 @@ export function NavBarMenuSection({
{getNavTitle(link.id) ?? link.text}
</div>
</NavBarMenuItem>
{Boolean(link.children?.length) && (
{children && (
<Button
aria-label={`${sectionExpanded ? 'Collapse' : 'Expand'} section`}
variant="secondary"