Skip to content

Commit 201abe6

Browse files
committed
Restore skip-stack-frames-pattern setting with empty default
1 parent 0030c54 commit 201abe6

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

.github/pull_request_template.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
<!-- Explain how you've tested your change here -->
88

9+
- [ ] This change maintains backwards compatibility with previous Local Storage data (if modifying settings, experiments, or other persisted client state).
10+
911
# Upstreaming plan
1012

1113
<!-- Pick one: -->

front_end/core/sdk/sdk-meta.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,13 @@ const UIStrings = {
327327
const str_ = i18n.i18n.registerUIStrings('core/sdk/sdk-meta.ts', UIStrings);
328328
const i18nLazyString = i18n.i18n.getLazilyComputedLocalizedString.bind(undefined, str_);
329329

330+
Common.Settings.registerSettingExtension({
331+
storageType: Common.Settings.SettingStorageType.Synced,
332+
settingName: 'skip-stack-frames-pattern',
333+
settingType: Common.Settings.SettingType.REGEX,
334+
defaultValue: '',
335+
});
336+
330337
Common.Settings.registerSettingExtension({
331338
storageType: Common.Settings.SettingStorageType.Synced,
332339
settingName: 'skip-content-scripts',

0 commit comments

Comments
 (0)