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
parent 25a8ae8f6c
commit 19e00299bb
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B

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