From 52bfdf0ad2a5f91315aed15859b64b1387d951d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1vid=20Tak=C3=A1cs-Tolnai?= Date: Mon, 27 Apr 2026 21:46:49 +0200 Subject: [PATCH] feat(frontend): preload assignee list on click with current user first Show all available project members in the assignee dropdown when the user clicks the search input, instead of requiring them to type first. The current user is sorted to the top of the list. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../tasks/partials/EditAssignees.vue | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/frontend/src/components/tasks/partials/EditAssignees.vue b/frontend/src/components/tasks/partials/EditAssignees.vue index aa08f4de6..47fb09ea3 100644 --- a/frontend/src/components/tasks/partials/EditAssignees.vue +++ b/frontend/src/components/tasks/partials/EditAssignees.vue @@ -7,11 +7,13 @@ :placeholder="$t('task.assignee.placeholder')" :multiple="true" :search-results="foundUsers" + :show-empty="true" label="name" :select-placeholder="$t('task.assignee.selectPlaceholder')" :autocomplete-enabled="false" @search="findUser" @select="addAssignee" + @click="preloadUsers" >