feat: show initial list of users when opening the assignees view
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
kolaente 2023-04-03 19:45:24 +02:00
parent df7a590dcb
commit da200fc117
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
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