Skip to content

Commit

Permalink
fix(assignee-selector): Teams should be searchable with # (#84043)
Browse files Browse the repository at this point in the history
Fixes #84041

Typing `#issues` should bring up the issues team in the assignee
selector
  • Loading branch information
malwilley authored Jan 24, 2025
1 parent 91538bd commit 53c19e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/components/assigneeSelectorDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ export default function AssigneeSelectorDropdown({
const makeTeamOption = (assignableTeam: AssignableTeam): SelectOption<string> => ({
label: <TeamBadge data-test-id="assignee-option" team={assignableTeam.team} />,
value: `team:${assignableTeam.team.id}`,
textValue: assignableTeam.team.slug,
textValue: `#${assignableTeam.team.slug}`,
});

const makeSuggestedAssigneeOption = (
Expand Down

0 comments on commit 53c19e5

Please sign in to comment.