ref(issues): Rename progress state 'triaged' to 'assigned'#117964
Conversation
Rename the TRIAGED progress state to ASSIGNED in the frontend enum, labels, icons, and predefined tag values. Backend changes are separate.
Add a new icon (quarter-filled circle) to visually distinguish the assigned state from identified. Register it in the icon index and stories.
| export {IconThumb} from './iconThumb'; | ||
| export {IconTimer} from './iconTimer'; | ||
| export {IconTrello} from './iconTrello'; | ||
| export {IconTriaged} from './iconTriaged'; |
There was a problem hiding this comment.
Should we change the icon name to IconAssigned as well?
There was a problem hiding this comment.
I mentioned in the PR description that I didn't like IconAssigned because it might be confused with the user icon. But I do agree that these icons probably would be better if we named them something completely different (based on their appearance rather than their relation to progress)
| id: 'triaged', | ||
| groups: ['status'], | ||
| keywords: ['circle', 'progress', 'assigned'], | ||
| name: 'Triaged', |
There was a problem hiding this comment.
Should we make these assigned as well? 🤔 or maybe something around a progress circle or something to decouple it from the state name?
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.
Reviewed by Cursor Bugbot for commit d1f8256. Configure here.
Story previewsPreview the stories changed in this PR on the Vercel deployment: Preview deployment: https://sentry-oo6qgpvzt.sentry.dev |
Renames the `TRIAGED` progress state to `ASSIGNED` on the frontend: the enum value, display label, predefined tag values, and icon. This also adds a missing progress icon and renames the existing ones to be less coupled to the names of progress items.


Followup to #117948
Renames the
TRIAGEDprogress state toASSIGNEDon the frontend: the enum value, display label, predefined tag values, and icon.This also adds a previously-missing icon for the assigned state. I kept the icon name IconTriaged (as it is in figma) since IconAssigned might cause confusion with the user icon.