fix: search by username instead of user id
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2022-08-15 22:50:42 +02:00
parent 478e62eaed
commit 0415534604
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ export default defineComponent({
let ids = []
this[kind].forEach(u => {
ids.push(u.id)
ids.push(kind === 'users' ? u.username : u.id)
})
this.filters[filterName] = ids.join(',')