fix: WidgetCard-Import wiederherstellen — weißer Bildschirm nach Login.
Some checks failed
Deploy Development / deploy (push) Successful in 46s
Test Suite / pytest-backend (push) Failing after 1m48s
Test Suite / k6 /api/health Baseline (push) Has been skipped
Test Suite / playwright-smoke (push) Has been skipped
Test Suite / lint-backend (push) Successful in 2s
Test Suite / compose-smoke (push) Has been skipped

Beim AP1.9a-Routing-Umbau fehlten die Imports in zwei Cockpit-Widgets; React brach nach Anmeldung ab.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Lars 2026-07-08 13:01:46 +02:00
parent e42edd86fa
commit 2734215833
3 changed files with 3 additions and 1 deletions

View File

@ -1,3 +1,3 @@
APP_VERSION = "0.16.0-ap1.9a" APP_VERSION = "0.16.1-ap1.9a"
DB_SCHEMA_VERSION = "014" DB_SCHEMA_VERSION = "014"
APP_NAME = "jinkendo-kairo" APP_NAME = "jinkendo-kairo"

View File

@ -5,6 +5,7 @@ import { NEXT_ACTION_KIND_LABELS } from '../constants/operating.js'
import { EmptyState } from '../components/EmptyState.jsx' import { EmptyState } from '../components/EmptyState.jsx'
import { ErrorState } from '../components/ErrorState.jsx' import { ErrorState } from '../components/ErrorState.jsx'
import { LoadingState } from '../components/LoadingState.jsx' import { LoadingState } from '../components/LoadingState.jsx'
import { WidgetCard } from '../components/WidgetCard.jsx'
import { actionPath, scopedPath } from '../utils/routes.js' import { actionPath, scopedPath } from '../utils/routes.js'
function NextActionList({ items, initiativeId, showInitiativeLink = true }) { function NextActionList({ items, initiativeId, showInitiativeLink = true }) {

View File

@ -6,6 +6,7 @@ import { PriorityBadge } from '../components/PriorityBadge.jsx'
import { EmptyState } from '../components/EmptyState.jsx' import { EmptyState } from '../components/EmptyState.jsx'
import { ErrorState } from '../components/ErrorState.jsx' import { ErrorState } from '../components/ErrorState.jsx'
import { LoadingState } from '../components/LoadingState.jsx' import { LoadingState } from '../components/LoadingState.jsx'
import { WidgetCard } from '../components/WidgetCard.jsx'
import { actionPath, scopedPath } from '../utils/routes.js' import { actionPath, scopedPath } from '../utils/routes.js'
function formatDue(iso) { function formatDue(iso) {