We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 384095e commit 7cd732fCopy full SHA for 7cd732f
frontend/src/lib/components/Account/ProjectMenu.tsx
@@ -66,8 +66,8 @@ export function ProjectMenu({
66
className={cn('max-w-fit min-w-[40px]', iconOnly ? 'min-w-auto' : '', buttonProps.className)}
67
>
68
{iconOnly ? (
69
- <div className="Lettermark bg-[var(--color-bg-fill-button-tertiary-active)] w-5 h-5 ">
70
- {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)!).toLocaleUpperCase()}
71
</div>
72
) : (
73
<span className="truncate">{currentTeam.name ?? 'Project'}</span>
0 commit comments