File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
site/src/components/Resources Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ const MetadataItem: FC<{ item: WorkspaceAgentMetadata }> = ({ item }) => {
27
27
28
28
// Stale data is as good as no data. Plus, we want to build confidence in our
29
29
// users that what's shown is real. If times aren't correctly synced this
30
- // could lead to issues.
30
+ // could be buggy. But, how common is that anyways?
31
31
const value =
32
32
secondsSinceLastCollected < staleThreshold ? (
33
33
< div className = { styles . metadataValue } > { item . result . value } </ div >
Original file line number Diff line number Diff line change @@ -52,8 +52,21 @@ export const AgentRow: FC<AgentRowProps> = ({
52
52
< AgentStatus agent = { agent } />
53
53
</ div >
54
54
55
- < Stack alignItems = "flex-start" direction = "column" >
56
- < Stack direction = "row" alignItems = "end" >
55
+ < Stack
56
+ alignItems = "flex-start"
57
+ direction = "column"
58
+ style = { {
59
+ flex : 1 ,
60
+ } }
61
+ >
62
+ < Stack
63
+ direction = "row"
64
+ alignItems = "end"
65
+ style = { {
66
+ width : "100%" ,
67
+ justifyContent : "space-between" ,
68
+ } }
69
+ >
57
70
< Stack direction = "row" alignItems = "baseline" >
58
71
< div >
59
72
< div className = { styles . agentName } > { agent . name } </ div >
You can’t perform that action at this time.
0 commit comments