From 900c6528ac1acf53bd43bec37d324e10d5e61f80 Mon Sep 17 00:00:00 2001 From: Boris Melnik Date: Wed, 26 Jan 2022 00:06:25 +0300 Subject: [PATCH] fix(groups): Hide unchecked users in group creation popup Closes: #4532 --- ui/app/AppLayouts/Chat/panels/ContactListPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/panels/ContactListPanel.qml b/ui/app/AppLayouts/Chat/panels/ContactListPanel.qml index 7245ca61c8..5aa5d20300 100644 --- a/ui/app/AppLayouts/Chat/panels/ContactListPanel.qml +++ b/ui/app/AppLayouts/Chat/panels/ContactListPanel.qml @@ -33,7 +33,7 @@ ScrollView { if (selectMode) { return !searchString || model.name.toLowerCase().includes(searchString) } - return checkbox.checked || model.isContact + return checkbox.checked } components: [ StatusCheckBox {