File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
src/pages/tenant/conditional/deploy-vacation Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ const Page = () => {
31
31
customDataformatter = { ( values ) => {
32
32
const shippedValues = {
33
33
tenantFilter : tenantDomain ,
34
- UserId : values . UserId ?. value ,
34
+ Users : values . Users ,
35
35
PolicyId : values . PolicyId ?. value ,
36
36
StartDate : values . startDate ,
37
37
EndDate : values . endDate ,
@@ -55,8 +55,12 @@ const Page = () => {
55
55
< CippFormUserSelector
56
56
label = { `Users in ${ tenantDomain } ` }
57
57
formControl = { formControl }
58
- name = "UserId"
59
- multiple = { false }
58
+ name = "Users"
59
+ multiple = { true }
60
+ addedField = { {
61
+ userPrincipalName : "userPrincipalName" ,
62
+ displayName : "displayName" ,
63
+ } }
60
64
validators = { { required : "Picking a user is required" } }
61
65
required = { true }
62
66
/>
You can’t perform that action at this time.
0 commit comments