diff --git a/web/drafting-board.js b/web/drafting-board.js index 3ea04df..10e5eca 100644 --- a/web/drafting-board.js +++ b/web/drafting-board.js @@ -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; + } } });