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 786470b commit 9ed08abCopy full SHA for 9ed08ab
site/src/components/WorkspaceBuild/WorkspaceBuildData.tsx
@@ -25,14 +25,14 @@ export const WorkspaceBuildData = ({ build }: { build: WorkspaceBuild }) => {
25
<div css={{ overflow: "hidden" }}>
26
<div
27
css={{
28
- textTransform: "capitalize",
29
color: theme.palette.text.primary,
30
textOverflow: "ellipsis",
31
overflow: "hidden",
32
whiteSpace: "nowrap",
33
}}
34
>
35
- {build.transition} by{" "}
+ <span css={{ textTransform: "capitalize" }}>{build.transition}</span>{" "}
+ by{" "}
36
<span css={{ fontWeight: 500 }}>
37
{getDisplayWorkspaceBuildInitiatedBy(build)}
38
</span>
0 commit comments