Conversation
…s inside Seer settings
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
Bugbot Autofix is OFF. To automatically fix reported issues with Cloud Agents, enable Autofix in the Cursor dashboard.
| {queryString | ||
| ? tct('Selected all projects matching: [queryString].', { | ||
| ? tct('Selected all [count] projects matching: [queryString].', { | ||
| count: countSelected, |
There was a problem hiding this comment.
Missing pluralization for singular count in query path
Low Severity
When isAllSelected === true and a query string is present, the new tct call always renders the plural form (e.g., "Selected all 1 projects matching: …"). The non-query path correctly uses tn() to distinguish singular ("Selected 1 project.") from plural, but the query-string path hardcodes "projects"/"repositories" without pluralization. This can happen when a search returns exactly one result and it is selected. The same issue exists in both the project and repo table headers.
Additional Locations (1)
There was a problem hiding this comment.
false-ish! these two cases (2 cases per file) will only render when there are at least 2 items to be picked. you need to have one picked already, so the suggestion for 'all' must be for 2+ items. plural enough for us with our weak translations.
billyvg
left a comment
There was a problem hiding this comment.
Does select all here account for pagination? e.g. if we have multiple pages will hits be the # of results returned on first page or all pages?
There's no pagination right now. the page is slow for getsentry/* and some bigger customers too. But the messaging should work provided that the |
…s inside Seer settings (#107999) <img width="1147" height="753" alt="SCR-20260210-odcm" src="https://github.com/user-attachments/assets/0ec69a1f-b05f-4da3-9ff2-1e320d3ea1cc" /> Fixes CW-756


Fixes CW-756