summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/AccountSwitcher.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui/AccountSwitcher.qml')
-rw-r--r--components/package/contents/ui/AccountSwitcher.qml20
1 files changed, 12 insertions, 8 deletions
diff --git a/components/package/contents/ui/AccountSwitcher.qml b/components/package/contents/ui/AccountSwitcher.qml
index da878acf..6a9d2deb 100644
--- a/components/package/contents/ui/AccountSwitcher.qml
+++ b/components/package/contents/ui/AccountSwitcher.qml
@@ -165,16 +165,20 @@ Button {
165 onClicked: { 165 onClicked: {
166 editAccountComponent.createObject(app) 166 editAccountComponent.createObject(app)
167 } 167 }
168 }
169 }
170 }
171 168
172 Component { 169 Component {
173 id: editAccountComponent 170 id: editAccountComponent
171
172 KubeComponents.EditAccountDialog {
173 id: editAccount
174 174
175 KubeComponents.EditAccountDialog { 175 anchors.fill: parent
176 id: editAccount 176
177 anchors.fill: parent 177 //accountId: accountFactory.accountId
178 uiSource: accountFactory.uiPath
179 }
180 }
181 }
178 } 182 }
179 } 183 }
180 } 184 }