summaryrefslogtreecommitdiffstats
path: root/components/package/contents/ui/EditAccountDialog.qml
diff options
context:
space:
mode:
Diffstat (limited to 'components/package/contents/ui/EditAccountDialog.qml')
-rw-r--r--components/package/contents/ui/EditAccountDialog.qml7
1 files changed, 6 insertions, 1 deletions
diff --git a/components/package/contents/ui/EditAccountDialog.qml b/components/package/contents/ui/EditAccountDialog.qml
index 2fac4227..24f8b5e2 100644
--- a/components/package/contents/ui/EditAccountDialog.qml
+++ b/components/package/contents/ui/EditAccountDialog.qml
@@ -28,8 +28,9 @@ import org.kube.framework.theme 1.0
28Rectangle { 28Rectangle {
29 id: root 29 id: root
30 30
31 color: ColorPalette.border 31 property variant uiSource
32 32
33 color: ColorPalette.border
33 opacity: 0.9 34 opacity: 0.9
34 35
35 MouseArea { 36 MouseArea {
@@ -51,5 +52,9 @@ Rectangle {
51 MouseArea { 52 MouseArea {
52 anchors.fill: parent 53 anchors.fill: parent
53 } 54 }
55
56 Loader {
57 source: uiSource
58 }
54 } 59 }
55} 60}