Clean up, add ssh2 to extern
Some checks failed
Build and deploy / deploy (push) Failing after 50s

This commit is contained in:
2025-04-26 21:55:41 +01:00
parent 35c8964fe5
commit aab2664d91
4 changed files with 18 additions and 8 deletions

View File

@@ -25,11 +25,13 @@ export default async function Home() {
<tbody>
{list
.sort((ca, cb) => {
if (ca.Names[0] < cb.Names[0]) {
return -1;
}
if (ca.Names[0] > cb.Names[0]) {
return 1;
if (ca.Names[0] && cb.Names[0]) {
if (ca.Names[0] < cb.Names[0]) {
return -1;
}
if (ca.Names[0] > cb.Names[0]) {
return 1;
}
}
return 0;
})