Skip to content

Commit

Permalink
Fix UI element reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
oneonestar authored and wendigo committed Jun 15, 2024
1 parent 9bfb883 commit f39d994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/cluster.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(() => { });
}

Expand Down

0 comments on commit f39d994

Please sign in to comment.