diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml index 7cf7f94970..b98b1a52d9 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CommunityUserList.qml @@ -83,8 +83,6 @@ Item { model: userListDelegate section.property: "online" section.delegate: Item { - id: sectionItem - property bool online: !!section width: parent.width height: 24 @@ -93,7 +91,7 @@ Item { anchors.leftMargin: Style.current.padding font.pixelSize: Style.current.additionalTextSize color: Style.current.darkGrey - text: sectionItem.online ? qsTr("Online") : qsTr("Offline") + text: section === 'true' ? qsTr("Online") : qsTr("Offline") } } }