Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(feat)Update and reorganize Flutter dSYM Docs #12976

Merged
merged 28 commits into from
Mar 18, 2025
Merged
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e3408a9
sloppy draft
smeubank Mar 11, 2025
5c0d6fc
dart to common
smeubank Mar 11, 2025
6816bdc
remove changes
smeubank Mar 11, 2025
5c635c9
config radio buttons
smeubank Mar 12, 2025
84395e8
Update debugSymbolConfig.tsx
smeubank Mar 12, 2025
94bffc8
[getsentry/action-github-commit] Auto commit
getsantry[bot] Mar 12, 2025
ca161e6
Update debugSymbolConfig.tsx
smeubank Mar 12, 2025
4fd4308
Merge branch '(feat)flutter-dbsym-rework' of https://github.com/getse…
smeubank Mar 12, 2025
dfd0a8e
[getsentry/action-github-commit] Auto commit
getsantry[bot] Mar 12, 2025
089ca3f
Update debugSymbolConfig.tsx
smeubank Mar 12, 2025
bb691cf
Merge branch '(feat)flutter-dbsym-rework' of https://github.com/getse…
smeubank Mar 12, 2025
d0b7b34
[getsentry/action-github-commit] Auto commit
getsantry[bot] Mar 12, 2025
27c162e
extend onboarding component
smeubank Mar 13, 2025
8818594
[getsentry/action-github-commit] Auto commit
getsantry[bot] Mar 13, 2025
07c9193
Update redirects.js
smeubank Mar 13, 2025
62a4660
Merge branch '(feat)flutter-dbsym-rework' of https://github.com/getse…
smeubank Mar 13, 2025
e098efd
Update docs/platforms/dart/common/debug-symbols/index.mdx
smeubank Mar 13, 2025
25ad96d
Update docs/platforms/dart/guides/flutter/debug-symbols/index.mdx
smeubank Mar 13, 2025
697c62b
Update docs/platforms/dart/common/debug-symbols/index.mdx
smeubank Mar 13, 2025
c503940
Update platform-includes/debug-symbols/dart-plugin/dart.mdx
smeubank Mar 14, 2025
e2a2d4c
Update platform-includes/debug-symbols/dart-plugin/flutter.mdx
smeubank Mar 17, 2025
4bec4d2
resolving feedback
smeubank Mar 17, 2025
30eccfa
Merge branch '(feat)flutter-dbsym-rework' of https://github.com/getse…
smeubank Mar 17, 2025
69c12cc
add warning for dart dSYM support
smeubank Mar 17, 2025
b7a1d75
removed
smeubank Mar 17, 2025
8bc80e7
Update platform-includes/debug-symbols/dart-plugin/dart.mdx
smeubank Mar 17, 2025
966f6e3
better
smeubank Mar 17, 2025
192fbb7
Merge branch '(feat)flutter-dbsym-rework' of https://github.com/getse…
smeubank Mar 17, 2025
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
8 changes: 3 additions & 5 deletions src/components/debugSymbolConfig/debugSymbolConfig.tsx
Original file line number Diff line number Diff line change
@@ -30,9 +30,7 @@
},
];

export function DebugSymbolConfig({
defaultOptions = ['dsym'],
}: DebugSymbolConfigProps) {
export function DebugSymbolConfig({defaultOptions = ['dsym']}: DebugSymbolConfigProps) {
// Ensure dsym is always in the selected options
const initialOptions = [...new Set([...defaultOptions, 'dsym'])];
const [selectedOptions, setSelectedOptions] = useState<string[]>(initialOptions);
@@ -41,7 +39,7 @@
const handleOptionToggle = (optionId: string) => {
// If it's dsym, don't allow toggling
if (optionId === 'dsym') return;

setSelectedOptions(prev => {
// If already selected, remove it
if (prev.includes(optionId)) {
@@ -68,7 +66,7 @@
setCopied(true);
setTimeout(() => setCopied(false), 1200);
} catch (err) {
console.error('Failed to copy: ', err);

Check warning on line 69 in src/components/debugSymbolConfig/debugSymbolConfig.tsx

GitHub Actions / Lint

Unexpected console statement
}
};

@@ -144,4 +142,4 @@
</div>
</div>
);
}
}
2 changes: 1 addition & 1 deletion src/components/debugSymbolConfig/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './debugSymbolConfig';
export * from './debugSymbolConfig';