diff --git a/webapp/src/components/cluster.tsx b/webapp/src/components/cluster.tsx index 4cceca57a..e5841806a 100644 --- a/webapp/src/components/cluster.tsx +++ b/webapp/src/components/cluster.tsx @@ -23,7 +23,7 @@ export function Cluster() { const list = () => { backendsApi({}) .then(data => { - setBackendData(data); + setBackendData(data.sort((a, b) => a.name.localeCompare(b.name))); }).catch(() => { }); }