diff --git a/site/src/components/Resources/Resources.tsx b/site/src/components/Resources/Resources.tsx index e3214993b4ce0..bd9834b6a1e07 100644 --- a/site/src/components/Resources/Resources.tsx +++ b/site/src/components/Resources/Resources.tsx @@ -22,7 +22,6 @@ const Language = { resourceLabel: "Resource", agentsLabel: "Agents", agentLabel: "Agent", - accessLabel: "Access", } interface ResourcesProps { @@ -64,7 +63,7 @@ export const Resources: FC = ({ - {canUpdateWorkspace && {Language.accessLabel}} + {canUpdateWorkspace && } @@ -80,7 +79,7 @@ export const Resources: FC = ({ if (!agent) { return ( - + {resource.name} {resource.type} @@ -164,7 +163,7 @@ const useStyles = makeStyles((theme) => ({ // Adds some left spacing agentColumn: { - paddingLeft: `${theme.spacing(2)}px !important`, + paddingLeft: `${theme.spacing(4)}px !important`, }, agentInfo: { @@ -184,5 +183,6 @@ const useStyles = makeStyles((theme) => ({ display: "flex", gap: theme.spacing(0.5), flexWrap: "wrap", + justifyContent: "flex-end", }, }))