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.
1 parent 17a0599 commit 8067ae6Copy full SHA for 8067ae6
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