Skip to content

Commit

Permalink
Update ExtensionMappings.jsx
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnDuprey committed Jul 3, 2024
1 parent 11f3320 commit 109692d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/cipp/ExtensionMappings.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,8 @@ export default function ExtensionMappings({ type, fieldMappings = false, autoMap
name={field.FieldName}
label={field.FieldLabel}
values={listFieldsBackendResult.data.IntegrationFields.filter(
(item) => item.FieldType === field.FieldType || item.type === 'unset',
(item) =>
item?.FieldType === field.FieldType || item?.type === 'unset',
)}
placeholder="Select a Field"
/>
Expand Down

0 comments on commit 109692d

Please sign in to comment.