Skip to content
Merged
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
6 changes: 6 additions & 0 deletions fixtures/integration-docs/_platforms.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,12 @@
"type": "framework",
"id": "javascript-remix",
"name": "Remix"
},
{
"link": "https://docs.sentry.io/platforms/javascript/guides/svelte/",
"type": "framework",
"id": "javascript-svelte",
"name": "Svelte"
}
],
"id": "javascript",
Expand Down
6 changes: 6 additions & 0 deletions fixtures/integration-docs/javascript-svelte.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"html": "<div class=\"section\" id=\"installation\"></div>\n",
"link": "https://docs.sentry.io/platforms/javascript/guides/svelte/",
"id": "javascript-svelte",
"name": "Svelte"
}
1 change: 1 addition & 0 deletions static/app/components/events/interfaces/spans/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -502,6 +502,7 @@ export function isEventFromBrowserJavaScriptSDK(event: EventTransaction): boolea
'sentry.javascript.nextjs',
'sentry.javascript.electron',
'sentry.javascript.remix',
'sentry.javascript.svelte',
].includes(sdkName.toLowerCase());
}

Expand Down
2 changes: 2 additions & 0 deletions static/app/data/platformCategories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ export const frontend = [
'javascript-vue',
'javascript-nextjs',
'javascript-remix',
'javascript-svelte',
'unity',
] as const;

Expand Down Expand Up @@ -217,6 +218,7 @@ export const releaseHealth: PlatformKey[] = [
'javascript-vue',
'javascript-nextjs',
'javascript-remix',
'javascript-svelte',
// mobile
'android',
'apple-ios',
Expand Down