Do not compute filteredUsers if there's no search input

This commit is contained in:
Pavel Djundik 2019-11-27 19:56:21 +02:00
parent 446f99f62a
commit c19cbd7ffd

View file

@ -81,6 +81,10 @@ export default {
// filteredUsers is computed, to avoid unnecessary filtering
// as it is shared between filtering and keybindings.
filteredUsers() {
if (!this.userSearchInput) {
return;
}
return fuzzyFilter(this.userSearchInput, this.channel.users, {
pre: "<b>",
post: "</b>",