fix(Communities): make managing community button work again

This broken because the component is relying on globals that don't provide
the same APIs anymore.

Fixes #3000
This commit is contained in:
Pascal Precht 2021-07-21 12:42:39 +02:00 committed by Iuri Matias
parent 9971f2fc0a
commit 319334e21f
1 changed files with 3 additions and 3 deletions

View File

@ -89,8 +89,8 @@ Rectangle {
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: Style.current.padding
onClicked: {
communityProfilePopup.open()
}
onClicked: openPopup(communityProfilePopup, {
community: chatsModel.communities.activeCommunity
})
}
}