File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export const UsersTableBody: FC<
70
70
return (
71
71
< ChooseOne >
72
72
< Cond condition = { Boolean ( isLoading ) } >
73
- < TableLoaderSkeleton columns = { 4 } useAvatarData />
73
+ < TableLoaderSkeleton columns = { 5 } useAvatarData />
74
74
</ Cond >
75
75
< Cond condition = { ! users || users . length === 0 } >
76
76
< ChooseOne >
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export const WorkspacesTableBody: FC<
29
29
}
30
30
31
31
if ( ! workspaces ) {
32
- return < TableLoaderSkeleton columns = { 4 } useAvatarData />
32
+ return < TableLoaderSkeleton columns = { 5 } useAvatarData />
33
33
}
34
34
35
35
if ( workspaces . length === 0 ) {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ export const GroupsPageView: FC<GroupsPageViewProps> = ({
81
81
< TableBody >
82
82
< ChooseOne >
83
83
< Cond condition = { isLoading } >
84
- < TableLoaderSkeleton columns = { 2 } useAvatarData />
84
+ < TableLoaderSkeleton columns = { 3 } useAvatarData />
85
85
</ Cond >
86
86
87
87
< Cond condition = { isEmpty } >
@@ -143,7 +143,11 @@ export const GroupsPageView: FC<GroupsPageViewProps> = ({
143
143
144
144
< TableCell >
145
145
{ group . members . length === 0 && "-" }
146
- < AvatarGroup >
146
+ < AvatarGroup
147
+ max = { 10 }
148
+ total = { group . members . length }
149
+ sx = { { justifyContent : "flex-end" } }
150
+ >
147
151
{ group . members . map ( ( member ) => (
148
152
< UserAvatar
149
153
key = { member . username }
Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ export const TemplatesPageView: FC<
210
210
</ TableHead >
211
211
< TableBody >
212
212
< Maybe condition = { isLoading } >
213
- < TableLoaderSkeleton columns = { 4 } useAvatarData />
213
+ < TableLoaderSkeleton columns = { 5 } useAvatarData />
214
214
</ Maybe >
215
215
216
216
< ChooseOne >
You can’t perform that action at this time.
0 commit comments