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

fixes #5273
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

View File

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