@@ -22,7 +22,6 @@ const Language = {
22
22
resourceLabel :"Resource" ,
23
23
agentsLabel :"Agents" ,
24
24
agentLabel :"Agent" ,
25
- accessLabel :"Access" ,
26
25
}
27
26
28
27
interface ResourcesProps {
@@ -64,7 +63,7 @@ export const Resources: FC<ResourcesProps> = ({
64
63
< AgentHelpTooltip />
65
64
</ Stack >
66
65
</ TableCell >
67
- { canUpdateWorkspace && < TableCell > { Language . accessLabel } </ TableCell > }
66
+ { canUpdateWorkspace && < TableCell > </ TableCell > }
68
67
</ TableHeaderRow >
69
68
</ TableHead >
70
69
< TableBody >
@@ -80,7 +79,7 @@ export const Resources: FC<ResourcesProps> = ({
80
79
if ( ! agent ) {
81
80
return (
82
81
< TableRow key = { `${ resource . id } -${ agentIndex } ` } >
83
- < TableCell className = { styles . resourceNameCell } >
82
+ < TableCell >
84
83
{ resource . name }
85
84
< span className = { styles . resourceType } > { resource . type } </ span >
86
85
</ TableCell >
@@ -164,7 +163,7 @@ const useStyles = makeStyles((theme) => ({
164
163
165
164
// Adds some left spacing
166
165
agentColumn :{
167
- paddingLeft :`${ theme . spacing ( 2 ) } px !important` ,
166
+ paddingLeft :`${ theme . spacing ( 4 ) } px !important` ,
168
167
} ,
169
168
170
169
agentInfo :{
@@ -184,5 +183,6 @@ const useStyles = makeStyles((theme) => ({
184
183
display :"flex" ,
185
184
gap :theme . spacing ( 0.5 ) ,
186
185
flexWrap :"wrap" ,
186
+ justifyContent :"flex-end" ,
187
187
} ,
188
188
} ) )