diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-20 10:00:34 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-20 10:00:34 +0800 |
commit | df4c591dacfbbc21ad3fce280dad6ab78e56f4cd (patch) | |
tree | 96a05edcf0f1cd8ba483494188ece549f18b9b49 /Onboarding.qml | |
parent | e3cf9197843998ec919e1dd043eaccf04d122876 (diff) |
Successful login leads to Home instead of Profile
Ticket search is done right after login
so home can show the tickets.
Diffstat (limited to 'Onboarding.qml')
-rw-r--r-- | Onboarding.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Onboarding.qml b/Onboarding.qml index 291f3c9..f66f491 100644 --- a/Onboarding.qml +++ b/Onboarding.qml @@ -5,8 +5,8 @@ OnboardingForm { signal logIn(string name, string password) signal ticketNew(string queue, string requestor) signal ticketSearch(string name) - function pushProfile() { - pageView.push("Profile.qml") + function pushHome() { + pageView.push("Home.qml") } objectName: "onboarding" |