fix(CommunitySettingsView): add missing membership request modal

Fixes #6141
This commit is contained in:
Pascal Precht 2022-06-20 14:01:50 +02:00 committed by Iuri Matias
parent 385495d74f
commit 84abcff65e
1 changed files with 12 additions and 0 deletions

View File

@ -242,4 +242,16 @@ StatusAppTwoPanelLayout {
}
}
}
Component {
id: membershipRequestPopup
MembershipRequestsPopup {
anchors.centerIn: parent
store: root.rootStore
pendingRequestsToJoin: root.community.pendingRequestsToJoin
onClosed: {
destroy()
}
}
}
}