Skip to content

Commit

Permalink
Merge pull request #6399 from NipuniBhagya/master
Browse files Browse the repository at this point in the history
Fix issue with group wizard user assignment step
  • Loading branch information
NipuniBhagya authored Jun 17, 2024
2 parents 9a50878 + 7828f0d commit 568abf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/long-lies-occur.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@wso2is/admin.extensions.v1": patch
---

Fix issue with limiting users in the group creation wizard
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -165,7 +165,7 @@ export const AddGroupUsers: FunctionComponent<AddGroupUserProps> = (props: AddGr
};

useEffect(() => {
setListItemLimit(UIConstants.DEFAULT_RESOURCE_LIST_ITEM_LIMIT);
setListItemLimit(null);
setUserListMetaContent(new Map<string, string>([
[ "name", "name" ],
[ "emails", "emails" ],
Expand Down

0 comments on commit 568abf1

Please sign in to comment.