Skip to content

Commit 99f233e

Browse files
authored
fix(assignee): Fix assignee text alignment (#91847)
Before: ![image](https://github.com/user-attachments/assets/45581dac-36fe-4c3a-9f3e-4d4e1772ea2c) After: ![image](https://github.com/user-attachments/assets/2a26f37c-736b-4f39-9573-96776c77b419) The assignee dropdown was inheriting the `text-align: right` property from the issue stream cell wrapper. I have no idea why it seemed to only apply to the suggested assignee.
1 parent 95d854a commit 99f233e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

static/app/components/assigneeSelectorDropdown.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ export default function AssigneeSelectorDropdown({
589589
export const AssigneeWrapper = styled('div')`
590590
display: flex;
591591
justify-content: flex-end;
592+
text-align: left;
592593
`;
593594

594595
const AssigneeDropdownButton = styled(DropdownButton)`

0 commit comments

Comments
 (0)