Skip to content

Commit 15a9b36

Browse files
committed
Fix column order
1 parent 489b2fe commit 15a9b36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/UsersTable/UsersTable.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ export const UsersTable: React.FC<UsersTableProps> = ({
5050
<TableHead>
5151
<TableRow>
5252
<TableCell>{Language.usernameLabel}</TableCell>
53-
<TableCell>{Language.rolesLabel}</TableCell>
5453
<TableCell>{Language.statusLabel}</TableCell>
54+
<TableCell>{Language.rolesLabel}</TableCell>
5555
{/* 1% is a trick to make the table cell width fit the content */}
5656
{canEditUsers && <TableCell width="1%" />}
5757
</TableRow>

0 commit comments

Comments
 (0)