Merge pull request #457 from Tria-plc/freight_feature/usermanagement

chages
This commit is contained in:
marshal
2026-07-04 10:31:47 +03:00
committed by GitHub
3 changed files with 9 additions and 2 deletions

View File

@@ -235,6 +235,8 @@ export function GlUpcomingWindowsSection() {
const rows = (data ?? []).filter(
(w) => w.windowPhase != null && w.windowPhase !== "DONE" && !isPast(w),
);
// Canceled schedules are retired to windowPhase='DONE' server-side, so the
// guard above already excludes them; they never reach the upcoming list.
// Open lanes first, then by opening time.
return rows.sort((a, b) => {
const openDiff = Number(b.isOpenNow) - Number(a.isOpenNow);