feat: show initial list of users when opening the assignees view

This commit is contained in:
kolaente 2023-04-03 19:45:24 +02:00 committed by konrad
parent 302ba2bec7
commit 59c942af73
1 changed files with 0 additions and 5 deletions

View File

@ -104,11 +104,6 @@ async function removeAssignee(user: IUser) {
}
async function findUser(query: string) {
if (query === '') {
foundUsers.value = []
return
}
const response = await projectUserService.getAll({projectId: props.projectId}, {s: query}) as IUser[]
// Filter the results to not include users who are already assigned