feat(drafts): show Koncept for null numbers in lists + fix filtered empty-state

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
BOHA
2026-06-09 18:52:34 +02:00
parent a15fa68c3b
commit 52ff0a6ffa
3 changed files with 15 additions and 5 deletions

View File

@@ -33,6 +33,7 @@ import {
statusLabel,
statusColor,
statusOptions,
documentNumberLabel,
} from "../lib/documentStatus";
const API_BASE = "/api/admin";
@@ -206,7 +207,7 @@ export default function IssuedOrders({ month, year }: IssuedOrdersProps) {
"&:hover": { textDecoration: "underline" },
}}
>
{o.po_number || "—"}
{documentNumberLabel(o.po_number)}
</Box>
),
},