fix(JoinCommunityView): Enable activity centre and disable start chat button

This commit is contained in:
Alex Jbanca 2023-03-21 12:54:47 +02:00 committed by Alex Jbanca
parent 3a09ef8fac
commit d24d233615
1 changed files with 5 additions and 0 deletions

View File

@ -69,6 +69,11 @@ StackLayout {
assetsModel: root.rootStore.assetsModel
collectiblesModel: root.rootStore.collectiblesModel
isInvitationPending: root.rootStore.isCommunityRequestPending(communityData.id)
notificationCount: activityCenterStore.unreadNotificationsCount
hasUnseenNotifications: activityCenterStore.hasUnseenNotifications
openCreateChat: rootStore.openCreateChat
onNotificationButtonClicked: Global.openActivityCenterPopup()
onAdHocChatButtonClicked: rootStore.openCloseCreateChatView()
onRevealAddressClicked: {
communityIntroDialog.open()
}