diff --git a/site/src/components/AppLink/AppLink.stories.tsx b/site/src/components/AppLink/AppLink.stories.tsx index 1b67d439784e6..b008905ef6c9d 100644 --- a/site/src/components/AppLink/AppLink.stories.tsx +++ b/site/src/components/AppLink/AppLink.stories.tsx @@ -14,7 +14,7 @@ WithIcon.args = { userName: "developer", workspaceName: MockWorkspace.name, appName: "code-server", - appIcon: "/code.svg", + appIcon: "/icon/code.svg", } export const WithoutIcon = Template.bind({}) diff --git a/site/src/components/AppLink/AppLink.tsx b/site/src/components/AppLink/AppLink.tsx index 9fd5d087be38b..4837acc53ec2d 100644 --- a/site/src/components/AppLink/AppLink.tsx +++ b/site/src/components/AppLink/AppLink.tsx @@ -38,6 +38,7 @@ export const AppLink: FC = ({ userName, workspaceName, appName, ap @@ -49,4 +50,8 @@ const useStyles = makeStyles(() => ({ link: { textDecoration: "none !important", }, + + button: { + whiteSpace: "nowrap", + }, })) diff --git a/site/src/components/BuildsTable/BuildsTable.tsx b/site/src/components/BuildsTable/BuildsTable.tsx index b5a9c7a8923d5..1a282b4184055 100644 --- a/site/src/components/BuildsTable/BuildsTable.tsx +++ b/site/src/components/BuildsTable/BuildsTable.tsx @@ -79,7 +79,9 @@ export const BuildsTable: FC = ({ builds, className }) => { - {status.status} + + {status.status} +
@@ -126,4 +128,7 @@ const useStyles = makeStyles((theme) => ({ arrowCell: { display: "flex", }, + status: { + whiteSpace: "nowrap", + }, })) diff --git a/site/src/components/Resources/Resources.tsx b/site/src/components/Resources/Resources.tsx index 55d9e4ba07429..119de5240167a 100644 --- a/site/src/components/Resources/Resources.tsx +++ b/site/src/components/Resources/Resources.tsx @@ -100,7 +100,9 @@ export const Resources: FC = ({ {agent.name}
{agent.operating_system} - {agentStatus.status} + + {agentStatus.status} +
@@ -182,4 +184,8 @@ const useStyles = makeStyles((theme) => ({ flexWrap: "wrap", justifyContent: "flex-end", }, + + status: { + whiteSpace: "nowrap", + }, }))