Skip to content
Merged
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
3 changes: 0 additions & 3 deletions static/app/views/settings/settingsCommandPaletteActions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ function isSettingsRoute(route: string): boolean {
if (!route.startsWith('/settings/')) {
return false;
}
if (route.includes(':projectId')) {
return false;
}

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Field hash lost after project picker

Medium Severity

Including :projectId routes puts field entries with a hash deep-link through ProjectSettingsLayout, which calls navigateTo with only location.pathname. That drops the hash, so after the user picks a project they land on the settings page without scrolling to or focusing the matched field.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b543614. Configure here.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ambiguous project section titles

Medium Severity

titleFromRoute only strips :orgId / account, so every newly included project route still starts with projects and becomes a section titled Projects. Distinct pages such as alerts, filters, and ownership all share that label, and the same string is reused in field keywords.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit b543614. Configure here.

if (route.includes(':teamId')) {
return false;
}
Expand Down
Loading