Try to sort unrelated legs too

This commit is contained in:
2025-07-07 18:07:56 +02:00
parent 309d9aab39
commit 1c05de0af5

View File

@@ -89,7 +89,11 @@ export function drawDraftingBoard() {
return -1;
}
} else {
return 0;
if (leg_a.origin_location.departure > leg_b.origin_location.departure) {
return 1;
} else {
return -1;
}
}
});