Thanks to visit codestin.com
Credit goes to github.com

Skip to content

feat: Move agent status #2593

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 23, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Format
  • Loading branch information
presleyp committed Jun 22, 2022
commit 95ad3e8d4d84f2b38a49ecc76090172d9b3b39f9
5 changes: 1 addition & 4 deletions site/src/components/Resources/Resources.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,13 @@ export const Resources: FC<ResourcesProps> = ({ resources, getResourcesError, wo
<TableCell className={styles.resourceNameCell} rowSpan={agents.length}>
{resource.name}
<span className={styles.resourceType}>{resource.type}</span>

</TableCell>
)}

<TableCell className={styles.agentColumn}>
{agent.name}
<span className={styles.operatingSystem}>{agent.operating_system}</span>
<span style={{ color: agentStatus.color }}>
{agentStatus.status}
</span>
<span style={{ color: agentStatus.color }}>{agentStatus.status}</span>
</TableCell>
{canUpdateWorkspace && (
<TableCell>
Expand Down