690327:1345 Fixing Refactor ADR-019 Naming convention uuid #16
CI / CD Pipeline / build (push) Failing after 5m11s
CI / CD Pipeline / deploy (push) Has been skipped

This commit is contained in:
2026-03-27 13:45:29 +07:00
parent bb33e542c7
commit 47f12508f4
3 changed files with 7 additions and 6 deletions
@@ -149,8 +149,8 @@ export function TransmittalForm() {
</FormControl>
<SelectContent>
{(Array.isArray(projectsList) ? projectsList : []).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>
)