From 7ce3529f5de93735901dfa066ce8e56ff745811d Mon Sep 17 00:00:00 2001 From: Alexander Bilyak Date: Wed, 24 Nov 2021 12:14:58 +0100 Subject: [PATCH] GODT-1442: Fix "Sign In" button --- internal/frontend/qml/AccountView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/frontend/qml/AccountView.qml b/internal/frontend/qml/AccountView.qml index f98b586a..1c01694d 100644 --- a/internal/frontend/qml/AccountView.qml +++ b/internal/frontend/qml/AccountView.qml @@ -110,7 +110,7 @@ Item { visible: root.user ? !root.user.loggedIn : false onClicked: { if (!root.user) return - root.parent.rightContent.showSignIn() + root.showSignIn() } }