-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
fix(forms): make :project specific fields searchable #121048
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -51,9 +51,6 @@ function isSettingsRoute(route: string): boolean { | |
| if (!route.startsWith('/settings/')) { | ||
| return false; | ||
| } | ||
| if (route.includes(':projectId')) { | ||
| return false; | ||
| } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ambiguous project section titlesMedium Severity
Additional Locations (1)Reviewed by Cursor Bugbot for commit b543614. Configure here. |
||
| if (route.includes(':teamId')) { | ||
| return false; | ||
| } | ||
|
|
||


There was a problem hiding this comment.
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
:projectIdroutes puts field entries with a hash deep-link throughProjectSettingsLayout, which callsnavigateTowith onlylocation.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)
static/app/views/settings/settingsCommandPaletteActions.tsx#L125-L129Reviewed by Cursor Bugbot for commit b543614. Configure here.