fix: SyncContainer “activeMailserver” error

There was a bad merge in PR #2225 that caused the QML propery `activeMailserver` in `SyncContainer` to be stripped out. This was causing an error in the console: `qrc:/app/AppLayouts/Profile/Sections/SyncContainer.qml:16: Error: Cannot assign to non-existent property "activeMailserver”`.

This PR adds the property back in and resolves the issue.
This commit is contained in:
Eric Mastro 2021-04-15 13:21:01 +10:00 committed by Iuri Matias
parent 63bc6f0e53
commit 707604f250
1 changed files with 1 additions and 1 deletions

View File

@ -9,6 +9,7 @@ Item {
id: syncContainer
Layout.fillHeight: true
Layout.fillWidth: true
property string activeMailserver: ""
Connections {
target: profileModel.mailservers
@ -19,7 +20,6 @@ Item {
Item {
width: profileContainer.profileContentWidth
anchors.horizontalCenter: parent.horizontalCenter
Component {