diff options
Diffstat (limited to 'framework/qml')
-rw-r--r-- | framework/qml/EditAccount.qml | 2 | ||||
-rw-r--r-- | framework/qml/InlineAccountSwitcher.qml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/framework/qml/EditAccount.qml b/framework/qml/EditAccount.qml index 872d9d03..2c73617f 100644 --- a/framework/qml/EditAccount.qml +++ b/framework/qml/EditAccount.qml | |||
@@ -84,7 +84,7 @@ Item { | |||
84 | text: qsTr("Change Password") | 84 | text: qsTr("Change Password") |
85 | onClicked: { | 85 | onClicked: { |
86 | Kube.Fabric.postMessage(Kube.Messages.componentDone, {}) | 86 | Kube.Fabric.postMessage(Kube.Messages.componentDone, {}) |
87 | Kube.Fabric.postMessage(Kube.Messages.requestLogin, {}) | 87 | Kube.Fabric.postMessage(Kube.Messages.requestLogin, {"accountId": loader.item.accountIdentifier}) |
88 | } | 88 | } |
89 | } | 89 | } |
90 | } | 90 | } |
diff --git a/framework/qml/InlineAccountSwitcher.qml b/framework/qml/InlineAccountSwitcher.qml index de79bc09..746891f9 100644 --- a/framework/qml/InlineAccountSwitcher.qml +++ b/framework/qml/InlineAccountSwitcher.qml | |||
@@ -24,7 +24,7 @@ FocusScope { | |||
24 | id: root | 24 | id: root |
25 | property string currentAccount | 25 | property string currentAccount |
26 | onCurrentAccountChanged: { | 26 | onCurrentAccountChanged: { |
27 | Kube.Fabric.postMessage(Kube.Messages.accountSelection, {"account": currentAccount}); | 27 | Kube.Fabric.postMessage(Kube.Messages.accountSelection, {accountId: currentAccount}); |
28 | } | 28 | } |
29 | 29 | ||
30 | ColumnLayout { | 30 | ColumnLayout { |