Skip to content

Commit

Permalink
fix: org dropdown with two orgs with same name (supabase#18142)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevcodez authored Oct 12, 2023
1 parent 062ae0e commit aaf144d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const OrganizationDropdown = ({ isNewNav = false }: OrganizationDropdownProps) =
<Link passHref href={href} key={org.slug}>
<CommandItem_Shadcn_
asChild
value={org.name}
value={`${org.name} - ${org.slug}`}
className="cursor-pointer w-full flex items-center justify-between"
onSelect={() => {
setOpen(false)
Expand Down

0 comments on commit aaf144d

Please sign in to comment.