diff --git a/.changeset/long-lies-occur.md b/.changeset/long-lies-occur.md new file mode 100644 index 00000000000..0dc50e27832 --- /dev/null +++ b/.changeset/long-lies-occur.md @@ -0,0 +1,5 @@ +--- +"@wso2is/admin.extensions.v1": patch +--- + +Fix issue with limiting users in the group creation wizard diff --git a/features/admin.extensions.v1/components/groups/wizard/group-assign-users.tsx b/features/admin.extensions.v1/components/groups/wizard/group-assign-users.tsx index f82a52192f7..4ffcb3a8964 100644 --- a/features/admin.extensions.v1/components/groups/wizard/group-assign-users.tsx +++ b/features/admin.extensions.v1/components/groups/wizard/group-assign-users.tsx @@ -16,7 +16,7 @@ * under the License. */ -import { UIConstants, UserBasicInterface, UserListInterface, getUsersList } from "@wso2is/admin.core.v1"; +import { UserBasicInterface, UserListInterface, getUsersList } from "@wso2is/admin.core.v1"; import { GroupsMemberInterface } from "@wso2is/admin.groups.v1/models"; import { UserManagementUtils } from "@wso2is/admin.users.v1/utils"; import { getUserNameWithoutDomain } from "@wso2is/core/helpers"; @@ -165,7 +165,7 @@ export const AddGroupUsers: FunctionComponent = (props: AddGr }; useEffect(() => { - setListItemLimit(UIConstants.DEFAULT_RESOURCE_LIST_ITEM_LIMIT); + setListItemLimit(null); setUserListMetaContent(new Map([ [ "name", "name" ], [ "emails", "emails" ],