Loading src/components/Editor/Invitees/InviteesListSearch.vue +2 −4 Original line number Diff line number Diff line Loading @@ -107,12 +107,10 @@ export default { if (query.length > 0) { const promises = [ this.findAttendeesFromContactsAPI(query), this.findAttendeesFromDAV(query), ] const [contactsResults, davResults] = await Promise.all(promises) const [contactsResults] = await Promise.all(promises) matches.push(...contactsResults) matches.push(...davResults) // Source of the Regex: https://stackoverflow.com/a/46181 // eslint-disable-next-line Loading Loading
src/components/Editor/Invitees/InviteesListSearch.vue +2 −4 Original line number Diff line number Diff line Loading @@ -107,12 +107,10 @@ export default { if (query.length > 0) { const promises = [ this.findAttendeesFromContactsAPI(query), this.findAttendeesFromDAV(query), ] const [contactsResults, davResults] = await Promise.all(promises) const [contactsResults] = await Promise.all(promises) matches.push(...contactsResults) matches.push(...davResults) // Source of the Regex: https://stackoverflow.com/a/46181 // eslint-disable-next-line Loading