Wartung: GraphView useMemoryGraph-Fix und Auftragsbuch-Status-Reaktivitaet bei ahead > 0
This commit is contained in:
@@ -140,7 +140,7 @@ def list_proposals() -> dict:
|
|||||||
# Frontend-Quelltext ohne gebautes Bundle: Box kann nicht bauen (kein Node) —
|
# Frontend-Quelltext ohne gebautes Bundle: Box kann nicht bauen (kein Node) —
|
||||||
# nach dem Annehmen bliebe die Oberfläche alt, bis am PC gebaut wird.
|
# nach dem Annehmen bliebe die Oberfläche alt, bis am PC gebaut wird.
|
||||||
"frontend_ohne_build": frontend_src and not frontend_dist,
|
"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:
|
except Exception:
|
||||||
log.warning("auftragsbuch: Branch %s nicht lesbar", branch, exc_info=True)
|
log.warning("auftragsbuch: Branch %s nicht lesbar", branch, exc_info=True)
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
+2
-2
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
<link rel="manifest" href="/manifest.webmanifest" />
|
<link rel="manifest" href="/manifest.webmanifest" />
|
||||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||||
<title>Mission Control 2.0</title>
|
<title>Mission Control 2.0</title>
|
||||||
<script type="module" crossorigin src="/assets/index--f4XyXiY.js"></script>
|
<script type="module" crossorigin src="/assets/index-BCXpKH8G.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/assets/index-DnWvM6fs.css">
|
<link rel="stylesheet" crossorigin href="/assets/index-DnWvM6fs.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export function MemoryView() {
|
|||||||
const { showAlert, showConfirm, dialogElement } = useDialog()
|
const { showAlert, showConfirm, dialogElement } = useDialog()
|
||||||
const { data: allItems = [] } = useMemory({})
|
const { data: allItems = [] } = useMemory({})
|
||||||
const { data: items = [], error: itemsErr } = useMemory({ q, category: filter })
|
const { data: items = [], error: itemsErr } = useMemory({ q, category: filter })
|
||||||
const { data: graph } = useMemoryGraph(view === "graph")
|
const { data: graph } = useMemoryGraph(true)
|
||||||
const error = itemsErr ? String(itemsErr) : ""
|
const error = itemsErr ? String(itemsErr) : ""
|
||||||
|
|
||||||
const reloadMemory = () => {
|
const reloadMemory = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user