fix(AC): fix store so that community request buttons work in the AC

Fixes #9988
This commit is contained in:
Jonathan Rainville 2023-03-22 14:05:31 -04:00 committed by Follow the white rabbit
parent ee5e72b088
commit ff5c618c82
1 changed files with 6 additions and 1 deletions

View File

@ -970,7 +970,12 @@ Item {
x: parent.width - width - Style.current.smallPadding
y: parent.y + _buttonSize
height: appView.height - _buttonSize * 2
store: appMain.rootChatStore
store: ChatStores.RootStore {
contactsStore: appMain.rootStore.contactStore
emojiReactionsModel: appMain.rootStore.emojiReactionsModel
openCreateChat: createChatView.opened
chatCommunitySectionModule: appMain.rootStore.mainModuleInst.getChatSectionModule()
}
activityCenterStore: appMain.activityCenterStore
}
}