Update ComposeModal, prevent tagging empty users. Fixes #2633

This commit is contained in:
Daniel Supernault 2021-02-06 21:22:27 -07:00
parent 60554c24b0
commit ceae664ce0
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 3 additions and 1 deletions

View File

@ -1177,7 +1177,9 @@ export default {
q: input
}
}).then(res => {
//return res.data;
if(!res.data.length) {
return;
}
return res.data.filter(d => {
return self.taggedUsernames.filter(r => {
return r.id == d.id;