fix issue with menu option not working on community members panel; update nickname
This commit is contained in:
parent
96d0760488
commit
7a6144f11a
|
@ -311,7 +311,7 @@ Item {
|
|||
profileType, trustStatus, contactType, ensVerified, onlineStatus, hasLocalNickname,
|
||||
myPublicKey: Global.userProfile.pubKey,
|
||||
publicKey: model.pubKey,
|
||||
displayName: memberItem.title,
|
||||
displayName: memberItem.title || model.displayName,
|
||||
userIcon: icon.name,
|
||||
})
|
||||
} else {
|
||||
|
@ -346,7 +346,7 @@ Item {
|
|||
Global.openNicknamePopupRequested(memberContextMenuView.publicKey, contactDetails, null)
|
||||
}
|
||||
onRemoveNickname: (displayName) => {
|
||||
root.store.contactsStore.changeContactNickname(memberContextMenuView.publicKey, "", displayName, true)
|
||||
root.rootStore.contactsStore.changeContactNickname(memberContextMenuView.publicKey, "", displayName, true)
|
||||
}
|
||||
onUnblockContact: {
|
||||
const contactDetails = memberContextMenuView.publicKey === "" ? {} : Utils.getContactDetailsAsJson(memberContextMenuView.publicKey, true, true)
|
||||
|
@ -356,7 +356,7 @@ Item {
|
|||
const contactDetails = memberContextMenuView.publicKey === "" ? {} : Utils.getContactDetailsAsJson(memberContextMenuView.publicKey, true, true)
|
||||
Global.markAsUntrustedRequested(memberContextMenuView.publicKey, contactDetails)
|
||||
}
|
||||
onRemoveTrustStatus: root.store.contactsStore.removeTrustStatus(memberContextMenuView.publicKey)
|
||||
onRemoveTrustStatus: root.rootStore.contactsStore.removeTrustStatus(memberContextMenuView.publicKey)
|
||||
onRemoveContact: {
|
||||
const contactDetails = memberContextMenuView.publicKey === "" ? {} : Utils.getContactDetailsAsJson(memberContextMenuView.publicKey, true, true)
|
||||
Global.removeContactRequested(memberContextMenuView.publicKey, contactDetails)
|
||||
|
|
Loading…
Reference in New Issue