From ba49b2ec202cb46b663d6b2b886a2992703efd72 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Mon, 24 Jan 2022 14:34:20 -0500 Subject: [PATCH] fix(community): fix community edit setting undefined color Fixes #4443 --- .../AppLayouts/Chat/popups/community/CreateCommunityPopup.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Chat/popups/community/CreateCommunityPopup.qml b/ui/app/AppLayouts/Chat/popups/community/CreateCommunityPopup.qml index b18055a555..6eb6ec5a0c 100644 --- a/ui/app/AppLayouts/Chat/popups/community/CreateCommunityPopup.qml +++ b/ui/app/AppLayouts/Chat/popups/community/CreateCommunityPopup.qml @@ -33,7 +33,7 @@ StatusModal { if (isEdit) { contentItem.communityName.input.text = community.name; contentItem.communityDescription.input.text = community.description; - contentItem.communityColor.color = community.communityColor; + contentItem.communityColor.color = community.color; contentItem.communityColor.colorSelected = true if (community.largeImage) { contentItem.communityImage.selectedImage = community.largeImage