We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461fadc commit be2b4f8Copy full SHA for be2b4f8
src/components/breadcrumbs/index.tsx
@@ -14,7 +14,10 @@ export function Breadcrumbs({leafNode}: BreadcrumbsProps) {
14
for (let node: DocNode | undefined = leafNode; node; node = node.parent) {
15
if (node && !node.missing) {
16
const to = node.path === '/' ? node.path : `/${node.path}/`;
17
- const title = node.frontmatter.platformTitle ?? node.frontmatter.sidebar_title ?? node.frontmatter.title;
+ const title =
18
+ node.frontmatter.platformTitle ??
19
+ node.frontmatter.sidebar_title ??
20
+ node.frontmatter.title;
21
22
breadcrumbs.unshift({
23
to,
0 commit comments