feat(@contacts): close modal on accept/decline all

fixes 
This commit is contained in:
Anthony Laibe 2022-05-02 12:36:24 +02:00 committed by Iuri Matias
parent f62b0ca99c
commit 3f35ff509c
1 changed files with 2 additions and 0 deletions
ui/app/AppLayouts/Chat/popups

View File

@ -73,6 +73,7 @@ ModalPopup {
onConfirmButtonClicked: { onConfirmButtonClicked: {
popup.store.rejectAllContactRequests() popup.store.rejectAllContactRequests()
declineAllDialog.close() declineAllDialog.close()
popup.close()
} }
} }
@ -85,6 +86,7 @@ ModalPopup {
onConfirmButtonClicked: { onConfirmButtonClicked: {
popup.store.acceptAllContactRequests() popup.store.acceptAllContactRequests()
acceptAllDialog.close() acceptAllDialog.close()
popup.close()
} }
} }