fix(ContactRequests): Fix sensor.onClicked to onClicked

This commit is contained in:
Boris Melnik 2022-08-22 17:22:28 +03:00 committed by Michał
parent a75626954c
commit 41694a6e09
2 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ Item {
title: qsTr("Contact requests") title: qsTr("Contact requests")
requestsCount: nbRequests requestsCount: nbRequests
sensor.onClicked: Global.openPopup(contactRequestsPopup) onClicked: Global.openPopup(contactRequestsPopup)
} }
// chat list // chat list

View File

@ -216,7 +216,7 @@ SettingsContentBase {
Layout.fillWidth: true Layout.fillWidth: true
title: qsTr("Contacts, Requests, and Blocked Users") title: qsTr("Contacts, Requests, and Blocked Users")
requestsCount: root.contactsStore.receivedContactRequestsModel.count requestsCount: root.contactsStore.receivedContactRequestsModel.count
sensor.onClicked: Global.changeAppSectionBySectionType(Constants.appSection.profile, onClicked: Global.changeAppSectionBySectionType(Constants.appSection.profile,
Constants.settingsSubsection.contacts) Constants.settingsSubsection.contacts)
} }