diff options
Diffstat (limited to 'accounts')
-rw-r--r-- | accounts/kolabnow/package/contents/ui/Login.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/accounts/kolabnow/package/contents/ui/Login.qml b/accounts/kolabnow/package/contents/ui/Login.qml index ae0213d5..e416b089 100644 --- a/accounts/kolabnow/package/contents/ui/Login.qml +++ b/accounts/kolabnow/package/contents/ui/Login.qml | |||
@@ -23,13 +23,12 @@ import org.kube.framework 1.0 as Kube | |||
23 | import org.kube.accounts.kolabnow 1.0 as KolabnowAccount | 23 | import org.kube.accounts.kolabnow 1.0 as KolabnowAccount |
24 | 24 | ||
25 | Item { | 25 | Item { |
26 | property string accountId | 26 | property alias accountId: settings.accountIdentifier |
27 | property string heading: qsTr("Login") | 27 | property string heading: qsTr("Login") |
28 | property string subheadline: settings.accountName | 28 | property string subheadline: settings.accountName |
29 | 29 | ||
30 | KolabnowAccount.KolabnowSettings { | 30 | KolabnowAccount.KolabnowSettings { |
31 | id: settings | 31 | id: settings |
32 | accountIdentifier: accountId | ||
33 | accountType: "kolabnow" | 32 | accountType: "kolabnow" |
34 | } | 33 | } |
35 | 34 | ||
@@ -53,8 +52,9 @@ Item { | |||
53 | Kube.PasswordField { | 52 | Kube.PasswordField { |
54 | id: pwField | 53 | id: pwField |
55 | Layout.fillWidth: true | 54 | Layout.fillWidth: true |
55 | focus: true | ||
56 | 56 | ||
57 | placeholderText: qsTr("Password of your email account") | 57 | placeholderText: qsTr("Password of your Kolab Now account") |
58 | text: settings.imapPassword | 58 | text: settings.imapPassword |
59 | onTextChanged: settings.imapPassword = text | 59 | onTextChanged: settings.imapPassword = text |
60 | } | 60 | } |