@@ -99,7 +99,7 @@ export const WorkspacesTable: FC<WorkspacesTableProps> = ({
99
99
< Table >
100
100
< TableHeader >
101
101
< TableRow >
102
- < TableHead className = { hasAppStatus ? "w-[30%] " : "w-[40%] " } >
102
+ < TableHead className = { hasAppStatus ? "w-1/6 " : "w-2/6 " } >
103
103
< div className = "flex items-center gap-2" >
104
104
{ canCheckWorkspaces && (
105
105
< Checkbox
@@ -123,14 +123,14 @@ export const WorkspacesTable: FC<WorkspacesTableProps> = ({
123
123
Name
124
124
</ div >
125
125
</ TableHead >
126
- { hasAppStatus && < TableHead className = "w-[30%] " > Activity</ TableHead > }
127
- < TableHead className = "w-[25%] " > Template</ TableHead >
128
- < TableHead className = "w-[20%] " > Last used</ TableHead >
129
- < TableHead className = "w-[15%] " > Status</ TableHead >
130
- < TableHead className = "w-[1%] " />
126
+ { hasAppStatus && < TableHead className = "w-2/6 " > Activity</ TableHead > }
127
+ < TableHead className = "w-2/6 " > Template</ TableHead >
128
+ < TableHead className = "w-1/6 " > Last used</ TableHead >
129
+ < TableHead className = "w-1/6 " > Status</ TableHead >
130
+ < TableHead className = "w-0 " />
131
131
</ TableRow >
132
132
</ TableHeader >
133
- < TableBody >
133
+ < TableBody className = "[&_td]:h-[72px]" >
134
134
{ ! workspaces && < TableLoader canCheckWorkspaces = { canCheckWorkspaces } /> }
135
135
{ workspaces && workspaces . length === 0 && (
136
136
< TableRow >
@@ -230,8 +230,12 @@ export const WorkspacesTable: FC<WorkspacesTableProps> = ({
230
230
< AvatarData
231
231
title = { getDisplayWorkspaceTemplateName ( workspace ) }
232
232
subtitle = {
233
- dashboard . showOrganizations &&
234
- ( activeOrg ?. display_name || workspace . organization_name )
233
+ dashboard . showOrganizations && (
234
+ < >
235
+ < span className = "sr-only" > Organization:</ span > { " " }
236
+ { activeOrg ?. display_name || workspace . organization_name }
237
+ </ >
238
+ )
235
239
}
236
240
avatar = {
237
241
< Avatar
@@ -332,23 +336,23 @@ const TableLoader: FC<TableLoaderProps> = ({ canCheckWorkspaces }) => {
332
336
return (
333
337
< TableLoaderSkeleton >
334
338
< TableRowSkeleton >
335
- < TableCell className = "w-2/5 " >
339
+ < TableCell className = "w-2/6 " >
336
340
< div className = "flex items-center gap-2" >
337
341
{ canCheckWorkspaces && < Checkbox size = "small" disabled /> }
338
342
< AvatarDataSkeleton />
339
343
</ div >
340
344
</ TableCell >
341
- < TableCell >
342
- < Skeleton variant = "text" width = "25%" />
345
+ < TableCell className = "w-2/6" >
346
+ < AvatarDataSkeleton />
343
347
</ TableCell >
344
- < TableCell >
345
- < Skeleton variant = "text" width = "25 %" />
348
+ < TableCell className = "w-1/6" >
349
+ < Skeleton variant = "text" width = "75 %" />
346
350
</ TableCell >
347
- < TableCell >
348
- < Skeleton variant = "text" width = "25 %" />
351
+ < TableCell className = "w-1/6" >
352
+ < Skeleton variant = "text" width = "75 %" />
349
353
</ TableCell >
350
- < TableCell >
351
- < Skeleton variant = "text" width = "25 %" />
354
+ < TableCell className = "w-0" >
355
+ < Skeleton variant = "text" width = "75 %" />
352
356
</ TableCell >
353
357
</ TableRowSkeleton >
354
358
</ TableLoaderSkeleton >
0 commit comments