Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Update frontend/src/pages/SupportEngineerPanel.jsx
Browse files
frontend/src/pages/SupportEngineerPanel.jsx
CHANGED
|
@@ -860,10 +860,10 @@ export const SupportEngineerPanel = () => {
|
|
| 860 |
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-md mb-xs">
|
| 861 |
<div>
|
| 862 |
<h2 className="font-headline-sm font-bold text-on-surface flex items-center text-[18px]">
|
| 863 |
-
<Users className="w-5 h-5 text-primary mr-2" /> Global Members
|
| 864 |
</h2>
|
| 865 |
<p className="text-[13px] text-on-surface-variant mt-0.5">
|
| 866 |
-
Inspect user accounts,
|
| 867 |
</p>
|
| 868 |
</div>
|
| 869 |
</div>
|
|
@@ -950,13 +950,13 @@ export const SupportEngineerPanel = () => {
|
|
| 950 |
<table className="w-full text-left text-sm border-collapse">
|
| 951 |
<thead className="bg-surface-container text-on-surface-variant border-b border-outline-variant select-none">
|
| 952 |
<tr>
|
| 953 |
-
{['Email', 'Role', 'Organization'
|
| 954 |
<th
|
| 955 |
key={h}
|
| 956 |
onClick={() => handleUserSort(h)}
|
| 957 |
-
className=
|
| 958 |
>
|
| 959 |
-
<div className=
|
| 960 |
{h}
|
| 961 |
</div>
|
| 962 |
</th>
|
|
@@ -979,15 +979,6 @@ export const SupportEngineerPanel = () => {
|
|
| 979 |
</span>
|
| 980 |
</td>
|
| 981 |
<td className="px-md py-sm text-[13px] font-semibold text-on-surface-variant">{u.org_name}</td>
|
| 982 |
-
<td className="px-md py-sm text-right flex justify-end gap-2">
|
| 983 |
-
<button
|
| 984 |
-
onClick={() => handleEditMember(u)}
|
| 985 |
-
className="text-on-surface-variant hover:text-primary transition-colors bg-transparent border-0 cursor-pointer p-1"
|
| 986 |
-
title="Edit Member Role & Organization"
|
| 987 |
-
>
|
| 988 |
-
<Edit className="w-4 h-4" />
|
| 989 |
-
</button>
|
| 990 |
-
</td>
|
| 991 |
</tr>
|
| 992 |
))}
|
| 993 |
</tbody>
|
|
|
|
| 860 |
<div className="flex flex-col sm:flex-row sm:items-center justify-between gap-md mb-xs">
|
| 861 |
<div>
|
| 862 |
<h2 className="font-headline-sm font-bold text-on-surface flex items-center text-[18px]">
|
| 863 |
+
<Users className="w-5 h-5 text-primary mr-2" /> Global Members (Read-Only)
|
| 864 |
</h2>
|
| 865 |
<p className="text-[13px] text-on-surface-variant mt-0.5">
|
| 866 |
+
Inspect user accounts, assigned roles, and organization mappings across all platform tenants.
|
| 867 |
</p>
|
| 868 |
</div>
|
| 869 |
</div>
|
|
|
|
| 950 |
<table className="w-full text-left text-sm border-collapse">
|
| 951 |
<thead className="bg-surface-container text-on-surface-variant border-b border-outline-variant select-none">
|
| 952 |
<tr>
|
| 953 |
+
{['Email', 'Role', 'Organization'].map((h) => (
|
| 954 |
<th
|
| 955 |
key={h}
|
| 956 |
onClick={() => handleUserSort(h)}
|
| 957 |
+
className="px-md py-sm font-bold text-[12px] uppercase tracking-wider cursor-pointer hover:bg-surface-container-highest transition-colors group"
|
| 958 |
>
|
| 959 |
+
<div className="flex items-center gap-xs">
|
| 960 |
{h}
|
| 961 |
</div>
|
| 962 |
</th>
|
|
|
|
| 979 |
</span>
|
| 980 |
</td>
|
| 981 |
<td className="px-md py-sm text-[13px] font-semibold text-on-surface-variant">{u.org_name}</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 982 |
</tr>
|
| 983 |
))}
|
| 984 |
</tbody>
|