mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-15 22:13:00 +00:00
Server admin: lists are displayed as word-wrapped CSV
This commit is contained in:
@@ -236,7 +236,8 @@ const ServerDashboard = (props) => {
|
||||
break;
|
||||
}
|
||||
if (Array.isArray(value)) {
|
||||
value.sort();
|
||||
// cast arrays (e.g. roles, groups) to string
|
||||
value = value.sort().join(", ");
|
||||
}
|
||||
result[key] = value;
|
||||
return result;
|
||||
@@ -253,6 +254,7 @@ const ServerDashboard = (props) => {
|
||||
}}
|
||||
valueStyle={{
|
||||
padding: "4px",
|
||||
whiteSpace: "unset",
|
||||
}}
|
||||
data={sortedData}
|
||||
/>
|
||||
|
Reference in New Issue
Block a user