mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-11 06:47:01 +00:00
a209d39881
- don't display identicon rings for contacts with an ENS name - prefer the at-form (@foo-user) whenever possible, and don't display their username or pubkey unless they are locally given a nickname - show compressed keys everywhere instead of the regular ones Fixes: #7319 Fixes: #7515
17 lines
467 B
QML
17 lines
467 B
QML
import StatusQ.Components 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Core 0.1
|
|
|
|
StatusListItem {
|
|
property var community
|
|
|
|
title: community.name
|
|
subTitle: community.amISectionAdmin ? qsTr("Admin") : qsTr("Member")
|
|
asset.name: !!community.image ? community.image : community.name
|
|
asset.isImage: asset.name.includes("data")
|
|
asset.isLetterIdenticon: !community.image
|
|
asset.color: community.color
|
|
asset.width: 40
|
|
asset.height: 40
|
|
}
|