diff --git a/jsx/src/components/ServerDashboard/ServerDashboard.jsx b/jsx/src/components/ServerDashboard/ServerDashboard.jsx index e96a659c..b9428155 100644 --- a/jsx/src/components/ServerDashboard/ServerDashboard.jsx +++ b/jsx/src/components/ServerDashboard/ServerDashboard.jsx @@ -236,8 +236,7 @@ const ServerDashboard = (props) => { break; } if (Array.isArray(value)) { - // cast arrays (e.g. roles, groups) to string - value = value.sort().join(", "); + value.sort(); } result[key] = value; return result;