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 b64f624 commit f9075caCopy full SHA for f9075ca
site/src/components/Resources/Resources.tsx
@@ -98,15 +98,14 @@ export const Resources: FC<React.PropsWithChildren<ResourcesProps>> = ({
98
{
99
/* If there is no agent, just display the resource name */
100
}
101
- if (!agent) {
+ if (!agent || workspace.latest_build.transition === "stop") {
102
return (
103
<TableRow key={`${resource.id}-${agentIndex}`}>
104
<TableCell>{resourceName}</TableCell>
105
<TableCell colSpan={3}></TableCell>
106
</TableRow>
107
)
108
109
-
110
const { displayVersion, outdated } = getDisplayVersionStatus(
111
agent.version,
112
serverVersion,
0 commit comments