Wartung: GraphView useMemoryGraph-Fix und Auftragsbuch-Status-Reaktivitaet bei ahead > 0

This commit is contained in:
Hitonabi
2026-07-09 12:04:56 +02:00
parent 51c0c868b2
commit bbed8211f8
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -140,7 +140,7 @@ def list_proposals() -> dict:
# Frontend-Quelltext ohne gebautes Bundle: Box kann nicht bauen (kein Node) —
# nach dem Annehmen bliebe die Oberfläche alt, bis am PC gebaut wird.
"frontend_ohne_build": frontend_src and not frontend_dist,
"status": statuses.get(branch),
"status": None if statuses.get(branch, {}).get("state") == "eingespielt" and ahead > 0 else statuses.get(branch),
})
except Exception:
log.warning("auftragsbuch: Branch %s nicht lesbar", branch, exc_info=True)