We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3ebcd9 commit ec3a90aCopy full SHA for ec3a90a
apps/dolly-frontend/src/main/js/src/components/organisasjonSelect/OrganisasjonMedMiljoeSelect.tsx
@@ -27,9 +27,9 @@ export const OrganisasjonMedMiljoeSelect = ({
27
}: OrgProps) => {
28
const options =
29
miljoeOptions &&
30
- miljoeOptions?.Q?.concat(miljoeOptions?.T)?.map((value: { id: string; label: string }) => ({
31
- value: value.id,
32
- label: value.label,
+ miljoeOptions?.Q?.map((value: { id: string; label: string }) => ({
+ value: value?.id,
+ label: value?.label,
33
}))
34
35
return (
0 commit comments