Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/src/lib/components/Account/ProjectMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ export function ProjectMenu({
className={cn('max-w-fit min-w-[40px]', iconOnly ? 'min-w-auto' : '', buttonProps.className)}
>
{iconOnly ? (
<div className="Lettermark bg-[var(--color-bg-fill-button-tertiary-active)] w-5 h-5 ">
{currentTeam.name.slice(0, 1).toLocaleUpperCase()}
<div className="Lettermark bg-[var(--color-bg-fill-button-tertiary-active)] w-5 h-5 dark:text-tertiary">
{String.fromCodePoint(currentTeam.name.codePointAt(0)!).toUpperCase()}
</div>
) : (
<span className="truncate">{currentTeam.name ?? 'Project'}</span>
Expand Down
Loading