summaryrefslogtreecommitdiffstats
path: root/components/accounts/qml/AccountWizard.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/accounts/qml/AccountWizard.qml')
-rw-r--r--components/accounts/qml/AccountWizard.qml6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/accounts/qml/AccountWizard.qml b/components/accounts/qml/AccountWizard.qml
index b928fd8b..eb259aa6 100644
--- a/components/accounts/qml/AccountWizard.qml
+++ b/components/accounts/qml/AccountWizard.qml
@@ -72,8 +72,12 @@ Kube.Popup {
72 delegate: Kube.Button { 72 delegate: Kube.Button {
73 objectName: "accountTypeButton" + modelData 73 objectName: "accountTypeButton" + modelData
74 Layout.fillWidth: true 74 Layout.fillWidth: true
75 text: modelData 75 text: accountFactory.accountName
76 onClicked: stack.push(wizardPage.createObject(stack, {accountType:modelData})) 76 onClicked: stack.push(wizardPage.createObject(stack, {accountType:modelData}))
77 Kube.AccountFactory {
78 id: accountFactory
79 accountType: modelData
80 }
77 } 81 }
78 } 82 }
79 } 83 }