fix(groups): Hide unchecked users in group creation popup

Closes: #4532
This commit is contained in:
Boris Melnik 2022-01-26 00:06:25 +03:00 committed by Sale Djenic
parent 47fa644703
commit 900c6528ac
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ ScrollView {
if (selectMode) { if (selectMode) {
return !searchString || model.name.toLowerCase().includes(searchString) return !searchString || model.name.toLowerCase().includes(searchString)
} }
return checkbox.checked || model.isContact return checkbox.checked
} }
components: [ components: [
StatusCheckBox { StatusCheckBox {