Skip to content

Commit

Permalink
fix(ui): user selection width in reports page (#1843)
Browse files Browse the repository at this point in the history
  • Loading branch information
wwayne authored Apr 15, 2024
1 parent f21b900 commit 75a1b2c
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions ee/tabby-ui/app/(dashboard)/reports/components/report.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -224,16 +224,15 @@ export function Report() {
>
<SelectTrigger className="h-auto w-auto border-none py-0 shadow-none">
<div className="flex h-6 items-center">
<IconUsers className="mr-1" />
<p className="mr-1.5">Member:</p>
<div className="w-[80px] overflow-hidden text-ellipsis text-left">
<IconUsers className="mr-[0.45rem]" />
<div className="w-[190px] overflow-hidden text-ellipsis text-left">
<SelectValue />
</div>
</div>
</SelectTrigger>
<SelectContent align="end">
<SelectGroup>
<SelectItem value={KEY_SELECT_ALL}>All</SelectItem>
<SelectItem value={KEY_SELECT_ALL}>All members</SelectItem>
{members.map(member => (
<SelectItem value={member.id} key={member.id}>
{member.email}
Expand Down

0 comments on commit 75a1b2c

Please sign in to comment.