We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8acf895 commit c219e37Copy full SHA for c219e37
src/components/breadcrumbs/index.tsx
@@ -22,7 +22,9 @@ export function Breadcrumbs({leafNode}: BreadcrumbsProps) {
22
const to = n.path === '/' ? n.path : `/${n.path}/`;
23
return (
24
<li className={styles['breadcrumb-item']} key={n.path}>
25
- <SmartLink to={to}>{n.frontmatter.topLevelAlias ?? n.frontmatter.title}</SmartLink>
+ <SmartLink to={to}>
26
+ {n.frontmatter.topLevelAlias ?? n.frontmatter.title}
27
+ </SmartLink>
28
</li>
29
);
30
})}
0 commit comments