This commit is contained in:
2026-07-10 16:41:22 +09:00
parent bbda38a013
commit 50d75fcfcd
47 changed files with 6309 additions and 350 deletions
+13 -1
View File
@@ -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,
];
}),
);
}