File tree 2 files changed +7
-2
lines changed
site/src/components/UsersTable
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ export const Language = {
15
15
rolesLabel : "Roles" ,
16
16
statusLabel : "Status" ,
17
17
lastSeenLabel : "Last Seen" ,
18
+ loginTypeLabel : "Login Type" ,
18
19
}
19
20
20
21
export interface UsersTableProps {
@@ -69,8 +70,9 @@ export const UsersTable: FC<React.PropsWithChildren<UsersTableProps>> = ({
69
70
< UserRoleHelpTooltip />
70
71
</ Stack >
71
72
</ TableCell >
72
- < TableCell width = "15%" > { Language . statusLabel } </ TableCell >
73
- < TableCell width = "15%" > { Language . lastSeenLabel } </ TableCell >
73
+ < TableCell width = "10%" > { Language . loginTypeLabel } </ TableCell >
74
+ < TableCell width = "10%" > { Language . statusLabel } </ TableCell >
75
+ < TableCell width = "10%" > { Language . lastSeenLabel } </ TableCell >
74
76
75
77
{ /* 1% is a trick to make the table cell width fit the content */ }
76
78
{ canEditUsers && < TableCell width = "1%" /> }
Original file line number Diff line number Diff line change @@ -155,6 +155,9 @@ export const UsersTableBody: FC<
155
155
) ) }
156
156
</ Stack >
157
157
</ TableCell >
158
+ < TableCell >
159
+ < pre > { user . login_type } </ pre >
160
+ </ TableCell >
158
161
< TableCell
159
162
className = { combineClasses ( [
160
163
styles . status ,
You can’t perform that action at this time.
0 commit comments