From 21d948634e3a06824f3bfeeaab8323725aac20d9 Mon Sep 17 00:00:00 2001 From: Lars Date: Fri, 10 Jul 2026 06:39:03 +0200 Subject: [PATCH] Fix: Plan-Eingang crashte wegen fehlender Context-Handler. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit handleUpdateBacklog und handleReorderBacklog waren in InitiativeInboxPage nicht destructured — ReferenceError, leerer Screen. Co-authored-by: Cursor --- frontend/src/pages/initiative/InitiativeInboxPage.jsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/frontend/src/pages/initiative/InitiativeInboxPage.jsx b/frontend/src/pages/initiative/InitiativeInboxPage.jsx index 80cb830..4f5b19d 100644 --- a/frontend/src/pages/initiative/InitiativeInboxPage.jsx +++ b/frontend/src/pages/initiative/InitiativeInboxPage.jsx @@ -1,5 +1,6 @@ import { useInitiativeOperations } from '../../context/InitiativeOperationsContext.jsx' import { BacklogSection } from '../../components/BacklogSection.jsx' +import { LoadingState } from '../../components/LoadingState.jsx' export function InitiativeInboxPage() { const { @@ -8,9 +9,10 @@ export function InitiativeInboxPage() { capabilities, formBusy, error, + loading, handleCreateBacklog, - handleBacklogGate, - handleBacklogStatus, + handleUpdateBacklog, + handleReorderBacklog, handleConvertBacklog, handleDeleteBacklog, } = useInitiativeOperations() @@ -19,6 +21,10 @@ export function InitiativeInboxPage() { return null } + if (loading) { + return + } + return ( <> {error &&

{error}

}