fix(groups): Hide unchecked users in group creation popup
Closes: #4532
This commit is contained in:
parent
47fa644703
commit
900c6528ac
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue