parent
d14fc486b5
commit
f40ef4613e
|
@ -76,7 +76,7 @@ Item {
|
|||
model.localNickname.toLowerCase().includes(root.filterText.toLowerCase()) ||
|
||||
model.pubKey.toLowerCase().includes(root.filterText.toLowerCase())) &&
|
||||
(!root.hideCommunityMembers ||
|
||||
!root.rootStore.communityHasMember(model.pubKey, root.communityId));
|
||||
!root.rootStore.communityHasMember(root.communityId, model.pubKey));
|
||||
}
|
||||
|
||||
onClicked: {
|
||||
|
|
|
@ -54,7 +54,8 @@ Item {
|
|||
status: model.onlineStatus
|
||||
userName: model.displayName
|
||||
asset.name: model.icon
|
||||
asset.isImage: true
|
||||
asset.isImage: (asset.name !== "")
|
||||
asset.isLetterIdenticon: (asset.name === "")
|
||||
asset.width: 40
|
||||
asset.height: 40
|
||||
color: "transparent"
|
||||
|
|
Loading…
Reference in New Issue