690403:1632 fix dashboard cir and trans
CI / CD Pipeline / build (push) Successful in 5m0s
CI / CD Pipeline / deploy (push) Successful in 8m34s

This commit is contained in:
2026-04-03 16:32:15 +07:00
parent d4f0d02c62
commit 9c835ec4ac
4 changed files with 218 additions and 58 deletions
@@ -56,8 +56,8 @@ export default function TransmittalPage() {
</SelectTrigger>
<SelectContent>
{(Array.isArray(projects) ? projects : []).map(
(p: { uuid: string; projectName?: string; projectCode?: string }) => (
<SelectItem key={p.uuid} value={p.uuid}>
(p: { publicId: string; projectName?: string; projectCode?: string }) => (
<SelectItem key={p.publicId} value={p.publicId}>
{p.projectName || p.projectCode}
</SelectItem>
)