From 897ed5df0fe5050e3d9286883aa518ee55c03705 Mon Sep 17 00:00:00 2001 From: Helmi Akermi <70575401+hakermi@users.noreply.github.com> Date: Fri, 13 Feb 2026 10:02:23 +0100 Subject: [PATCH] fix: prevent sending full user object in participants search query - MEED-10198 - Meeds-io/meeds#4023 (#569) prior to this change, The participants suggester was not working when the current user had a long profile work experiences description. The issue was caused by sending the full `currentUser` object in the request query string, which resulted in an oversized and invalid query. This fix ensures that when space details are present, `currentUser` is sent as a boolean flag instead of the full object --- .../components/Project/ProjectAssigneeParticipator.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/webapps/src/main/webapp/vue-app/tasks-management/components/Project/ProjectAssigneeParticipator.vue b/webapps/src/main/webapp/vue-app/tasks-management/components/Project/ProjectAssigneeParticipator.vue index d3ed04890..41b2ba4d6 100644 --- a/webapps/src/main/webapp/vue-app/tasks-management/components/Project/ProjectAssigneeParticipator.vue +++ b/webapps/src/main/webapp/vue-app/tasks-management/components/Project/ProjectAssigneeParticipator.vue @@ -88,14 +88,14 @@ export default { canEditParticipant() { return !(this.project.spaceDetails||this.project.spaceName); }, - searchOptions(){ - if (this.project.spaceDetails){ + searchOptions() { + if (this.project.spaceDetails) { return { spaceURL: this.project.spaceDetails.prettyName, - currentUser: this.currentUser + currentUser: false }; } - return this.currentUser; + return {}; }, relationsType(){ if (this.project.spaceDetails){