Fixed Devices button not working on the controller page

This commit is contained in:
2024-07-17 19:04:39 +02:00
parent 51d2e7be05
commit 841b6ae6e8

View File

@@ -4,6 +4,8 @@ import QtQuick.Layouts
import EVChargerApp import EVChargerApp
Page { Page {
signal closeRequested()
function backPressed() { function backPressed() {
return false return false
} }
@@ -36,7 +38,7 @@ Page {
Layout.fillHeight: true Layout.fillHeight: true
text: qsTr("Devices") text: qsTr("Devices")
onClicked: loader.close() onClicked: closeRequested()
} }
} }
} }