From 2f6f91e678bd04d9595a1c0dd12a34bdce67ef8c Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Tue, 15 Nov 2022 22:40:02 +0800 Subject: [PATCH] fix WelcomePage not working due to missing QQC2 --- src/qml/Component/Login/LoginStep.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/Component/Login/LoginStep.qml b/src/qml/Component/Login/LoginStep.qml index 42dff75c4..b5242badd 100644 --- a/src/qml/Component/Login/LoginStep.qml +++ b/src/qml/Component/Login/LoginStep.qml @@ -17,7 +17,7 @@ ColumnLayout { /// Process this module, this is called by the continue button. /// Should call \sa processed when it finish successfully. - property Action action: null + property QQC2.Action action: null /// Called when switching to the next step. signal processed(url nextUrl)