Add option to include subgroup users to empty (#3445)
This commit is contained in:
parent
961b8a098d
commit
b90487af39
1 changed files with 6 additions and 0 deletions
|
@ -251,6 +251,12 @@ export const Members = () => {
|
||||||
instructions={isManager ? t("users:emptyInstructions") : undefined}
|
instructions={isManager ? t("users:emptyInstructions") : undefined}
|
||||||
primaryActionText={isManager ? t("addMember") : undefined}
|
primaryActionText={isManager ? t("addMember") : undefined}
|
||||||
onPrimaryAction={() => setAddMembers(true)}
|
onPrimaryAction={() => setAddMembers(true)}
|
||||||
|
secondaryActions={[
|
||||||
|
{
|
||||||
|
text: t("includeSubGroups"),
|
||||||
|
onClick: () => setIncludeSubGroup(true),
|
||||||
|
},
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in a new issue