File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ export const ImportMembersDialog: FC<ImportMembersDialogProps> = ({
8686 useEffect ( ( ) => {
8787 if ( ! open ) {
8888 setStep ( 1 ) ;
89- reset ( { parentType : 'Project' , importMembers : false , importServiceAccounts : false } ) ;
89+ reset ( { parentType : 'Project' , importMembers : true , importServiceAccounts : true } ) ;
9090 }
9191 } , [ open , reset ] ) ;
9292 return (
@@ -110,7 +110,7 @@ export const ImportMembersDialog: FC<ImportMembersDialogProps> = ({
110110 < FlexBox direction = "Column" gap = { 4 } >
111111 < CheckBox
112112 text = { t ( 'common.members' ) }
113- checked = { getValues ( ' importMembers' ) ?? false }
113+ checked = { importMembers ?? false }
114114 onChange = { ( e : Ui5CustomEvent < CheckBoxDomRef , { checked : boolean } > ) =>
115115 setValue ( 'importMembers' , e . target . checked , {
116116 shouldValidate : true ,
@@ -121,7 +121,7 @@ export const ImportMembersDialog: FC<ImportMembersDialogProps> = ({
121121 />
122122 < CheckBox
123123 text = { t ( 'ImportMembersDialog.serviceAccountsLabel' ) }
124- checked = { getValues ( ' importServiceAccounts' ) ?? false }
124+ checked = { importServiceAccounts ?? false }
125125 onChange = { ( e : Ui5CustomEvent < CheckBoxDomRef , { checked : boolean } > ) =>
126126 setValue ( 'importServiceAccounts' , e . target . checked , {
127127 shouldValidate : true ,
You can’t perform that action at this time.
0 commit comments