fix: Documents with empty titles (hey, it can happen) are invisible in the sidebar)

This commit is contained in:
Tom Moor 2020-05-24 22:43:54 -07:00
parent 1b5600b025
commit a281b1e5be
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ class DocumentLink extends React.Component<Props> {
state: { title: node.title },
}}
expanded={showChildren ? true : undefined}
label={node.title}
label={node.title || 'Untitled'}
depth={depth}
exact={false}
menuOpen={this.menuOpen}