diff --git a/templates/meet.html.ep b/templates/meet.html.ep index 485b5d826674f0b2d5d991d8b467023031d006cb..d0cabe0ad2b1a8ab3b160553daf95d45e060dca7 100644 --- a/templates/meet.html.ep +++ b/templates/meet.html.ep @@ -92,16 +92,18 @@ }, searchUsers(kind) { - if ( this.filter[kind].length < 2 ) { - this.search[kind] = []; - return true; - } - fetch(USERS_URL + '?search=' + this.filter[kind] ) - .then((res) => res.json()) - .then(res => { - this.search[kind] = res; - }) + if ( this.filter[kind].length < 2 ) { + this.search[kind] = []; + return true; + } + + fetch(USERS_URL + '?search=' + this.filter[kind] ) + .then((res) => res.json()) + .then(res => { + this.search[kind] = res; + }) + }, searchGroups() {