We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c537ae + 8067ae6 commit 84b5f55Copy full SHA for 84b5f55
src/components/CippFormPages/CippExchangeSettingsForm.jsx
@@ -244,12 +244,13 @@ const CippExchangeSettingsForm = (props) => {
244
label="Add Access"
245
name="calendar.UserToGetPermissions"
246
isFetching={isFetching || usersList.isFetching}
247
- options={
248
- usersList?.data?.Results?.map((user) => ({
+ options={[
+ { value: "Default", label: "Default (Default)" },
249
+ ...(usersList?.data?.Results?.map((user) => ({
250
value: user.userPrincipalName,
251
label: `${user.displayName} (${user.userPrincipalName})`,
- })) || []
252
- }
+ })) || []),
253
+ ]}
254
multiple={false}
255
formControl={formControl}
256
/>
0 commit comments