Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/platforms/javascript/common/crons/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up Crons
sidebar_title: Crons
description: "Sentry Crons allows you to monitor the uptime and performance of any scheduled, recurring job in your application."
sidebar_order: 5750
supported:
Expand Down
1 change: 1 addition & 0 deletions docs/platforms/javascript/common/feature-flags/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up Feature Flags
sidebar_title: Feature Flags
sidebar_order: 7000
notSupported:
- javascript.aws-lambda
Expand Down
3 changes: 2 additions & 1 deletion docs/platforms/javascript/common/profiling/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up Profiling
sidebar_title: Profiling
sidebar_order: 5000
description: "Collect & view performance insights for JavaScript programs with Sentry's Profiling integrations. Get started with browser and Node.js profiling to understand your application's performance."
notSupported:
Expand All @@ -10,4 +11,4 @@ notSupported:
- javascript.cloudflare
---

<PageGrid />
<PageGrid />
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up Security Policy Reporting
sidebar_title: Security Policy Reporting
sidebar_order: 7500
description: "Learn how Sentry can help manage Content-Security-Policy violations, CSP reports, Expect-CT, and HTTP Public Key Pinning (HPKP) failures here."
---
Expand Down
1 change: 1 addition & 0 deletions docs/platforms/javascript/common/session-replay/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up Session Replay
sidebar_title: Session Replay
sidebar_order: 5500
notSupported:
- javascript.cordova
Expand Down
1 change: 1 addition & 0 deletions docs/platforms/javascript/common/tracing/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up Tracing
sidebar_title: Tracing
description: "Learn how to enable tracing in your app."
sidebar_order: 4000
---
Expand Down
1 change: 1 addition & 0 deletions docs/platforms/javascript/common/user-feedback/index.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Set Up User Feedback
sidebar_title: User Feedback
description: "Learn how to enable User Feedback in your app."
sidebar_order: 6000
---
Expand Down
1 change: 1 addition & 0 deletions docs/platforms/javascript/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
title: Browser JavaScript
platformTitle: JavaScript
sidebar_title: JavaScript
caseStyle: camelCase
supportLevel: production
sdk: 'sentry.javascript.browser'
Expand Down
5 changes: 4 additions & 1 deletion src/components/breadcrumbs/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ export function Breadcrumbs({leafNode}: BreadcrumbsProps) {
for (let node: DocNode | undefined = leafNode; node; node = node.parent) {
if (node && !node.missing) {
const to = node.path === '/' ? node.path : `/${node.path}/`;
const title = node.frontmatter.platformTitle ?? node.frontmatter.title;
const title =
node.frontmatter.platformTitle ??
node.frontmatter.sidebar_title ??
node.frontmatter.title;

breadcrumbs.unshift({
to,
Expand Down
Loading