690327:1345 Fixing Refactor ADR-019 Naming convention uuid #16
This commit is contained in:
@@ -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>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user