summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/Settings.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui/Settings.qml')
-rw-r--r--components/package/contents/ui/Settings.qml7
1 files changed, 5 insertions, 2 deletions
diff --git a/components/package/contents/ui/Settings.qml b/components/package/contents/ui/Settings.qml
index c17109a0..fa646372 100644
--- a/components/package/contents/ui/Settings.qml
+++ b/components/package/contents/ui/Settings.qml
@@ -61,6 +61,9 @@ Rectangle {
61 KubeFramework.AccountsController { 61 KubeFramework.AccountsController {
62 id: accountsController 62 id: accountsController
63 } 63 }
64 KubeFramework.AccountsModel {
65 id: accountsModel
66 }
64 67
65 SplitView { 68 SplitView {
66 anchors.fill: parent 69 anchors.fill: parent
@@ -76,7 +79,7 @@ Rectangle {
76 ListView { 79 ListView {
77 id: listView 80 id: listView
78 81
79 model: accountsController.accounts 82 model: accountsModel
80 83
81 currentIndex: -1 84 currentIndex: -1
82 85
@@ -90,7 +93,7 @@ Rectangle {
90 93
91 KubeFramework.AccountFactory { 94 KubeFramework.AccountFactory {
92 id: accountFactory 95 id: accountFactory
93 accountId: modelData 96 accountId: model.accountId
94 } 97 }
95 98
96 MouseArea { 99 MouseArea {