260710_0
This commit is contained in:
@@ -527,6 +527,9 @@ function userTable(users: DashboardUser[], currentUser: DashboardUser): HTMLElem
|
||||
[
|
||||
L("B01_Dashboard_Table_Email"),
|
||||
L("B01_Dashboard_Table_Name"),
|
||||
L("B01_Dashboard_Table_Position"),
|
||||
L("B01_Dashboard_Table_Department"),
|
||||
L("B01_Account_Field_Phone"),
|
||||
L("B01_Dashboard_Table_Role"),
|
||||
L("B01_Dashboard_Table_Status"),
|
||||
L("B01_Dashboard_Table_Action"),
|
||||
@@ -553,7 +556,16 @@ function userTable(users: DashboardUser[], currentUser: DashboardUser): HTMLElem
|
||||
);
|
||||
}
|
||||
|
||||
return [text(user.email), text(user.name), text(user.role), text(user.status), actionsEl];
|
||||
return [
|
||||
text(user.email),
|
||||
text(user.name),
|
||||
text(user.position),
|
||||
text(user.department),
|
||||
text(user.phone),
|
||||
text(user.role),
|
||||
text(user.status),
|
||||
actionsEl,
|
||||
];
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user