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.qml5
1 files changed, 3 insertions, 2 deletions
diff --git a/components/package/contents/ui/EditAccountDialog.qml b/components/package/contents/ui/EditAccountDialog.qml
index b2432eff..d065bbc2 100644
--- a/components/package/contents/ui/EditAccountDialog.qml
+++ b/components/package/contents/ui/EditAccountDialog.qml
@@ -29,6 +29,7 @@ Rectangle {
29 id: root 29 id: root
30 30
31 property variant uiSource 31 property variant uiSource
32 property variant accountId
32 33
33 color: ColorPalette.border 34 color: ColorPalette.border
34 opacity: 0.9 35 opacity: 0.9
@@ -54,10 +55,10 @@ Rectangle {
54 } 55 }
55 56
56 Loader { 57 Loader {
57
58 anchors.fill: parent 58 anchors.fill: parent
59 59
60 source: uiSource 60 source: root.uiSource
61 onLoaded: item.accountId = root.accountId
61 } 62 }
62 63
63 Component.onCompleted: console.log(uiSource) 64 Component.onCompleted: console.log(uiSource)