690327:1235 Fixing Refactor ADR-019 Naming convention uuid #15
CI / CD Pipeline / build (push) Successful in 5m27s
CI / CD Pipeline / deploy (push) Successful in 11m21s

This commit is contained in:
2026-03-27 12:35:08 +07:00
parent 2eab2e73d6
commit bb33e542c7
7 changed files with 45 additions and 7 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ export default function DrawingsPage() {
)}
</SelectTrigger>
<SelectContent>
{projects.map((project: { id?: number; publicId?: string; projectName: string; projectCode: string }) => (
{(projects as Array<{ id?: number; publicId?: string; projectName: string; projectCode: string }>).map((project) => (
<SelectItem key={project.publicId || project.id} value={String(project.publicId || project.id)}>
{project.projectCode} - {project.projectName}
</SelectItem>