Skip to content

Commit acd22b2

Browse files
fix(site): fix capitalized username (#11891)
Fix #11888
1 parent 3e89ba2 commit acd22b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

site/src/components/WorkspaceBuild/WorkspaceBuildData.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ export const WorkspaceBuildData = ({ build }: { build: WorkspaceBuild }) => {
2525
<div css={{ overflow: "hidden" }}>
2626
<div
2727
css={{
28-
textTransform: "capitalize",
2928
color: theme.palette.text.primary,
3029
textOverflow: "ellipsis",
3130
overflow: "hidden",
3231
whiteSpace: "nowrap",
3332
}}
3433
>
35-
{build.transition} by{" "}
34+
<span css={{ textTransform: "capitalize" }}>{build.transition}</span>{" "}
35+
by{" "}
3636
<span css={{ fontWeight: 500 }}>
3737
{getDisplayWorkspaceBuildInitiatedBy(build)}
3838
</span>

0 commit comments

Comments
 (0)