fix(ContactRequests): Fix `sensor.onClicked` to `onClicked`
This commit is contained in:
parent
a75626954c
commit
41694a6e09
|
@ -134,7 +134,7 @@ Item {
|
|||
title: qsTr("Contact requests")
|
||||
requestsCount: nbRequests
|
||||
|
||||
sensor.onClicked: Global.openPopup(contactRequestsPopup)
|
||||
onClicked: Global.openPopup(contactRequestsPopup)
|
||||
}
|
||||
|
||||
// chat list
|
||||
|
|
|
@ -216,7 +216,7 @@ SettingsContentBase {
|
|||
Layout.fillWidth: true
|
||||
title: qsTr("Contacts, Requests, and Blocked Users")
|
||||
requestsCount: root.contactsStore.receivedContactRequestsModel.count
|
||||
sensor.onClicked: Global.changeAppSectionBySectionType(Constants.appSection.profile,
|
||||
onClicked: Global.changeAppSectionBySectionType(Constants.appSection.profile,
|
||||
Constants.settingsSubsection.contacts)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue