File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
docs/platforms/javascript
src/components/breadcrumbs Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11title : Browser JavaScript
22platformTitle : JavaScript
3+ sidebar_title : JavaScript
34caseStyle : camelCase
45supportLevel : production
56sdk : ' sentry.javascript.browser'
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export function Breadcrumbs({leafNode}: BreadcrumbsProps) {
1414 for ( let node : DocNode | undefined = leafNode ; node ; node = node . parent ) {
1515 if ( node && ! node . missing ) {
1616 const to = node . path === '/' ? node . path : `/${ node . path } /` ;
17- const title = node . frontmatter . platformTitle ?? node . frontmatter . title ;
17+ const title = node . frontmatter . sidebar_title ?? node . frontmatter . title ;
1818
1919 breadcrumbs . unshift ( {
2020 to,
You can’t perform that action at this time.
0 commit comments