From 707604f2507d7167591dd0eeaae0a40ed8618d09 Mon Sep 17 00:00:00 2001 From: Eric Mastro Date: Thu, 15 Apr 2021 13:21:01 +1000 Subject: [PATCH] =?UTF-8?q?fix:=20SyncContainer=20=E2=80=9CactiveMailserve?= =?UTF-8?q?r=E2=80=9D=20error?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- ui/app/AppLayouts/Profile/Sections/SyncContainer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml b/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml index cd8e974652..5da9d5a5a6 100644 --- a/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml @@ -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 {