diff --git a/ui/app/AppLayouts/Chat/ChatColumn.qml b/ui/app/AppLayouts/Chat/ChatColumn.qml index ff1fe03fc8..1913ff3b1d 100644 --- a/ui/app/AppLayouts/Chat/ChatColumn.qml +++ b/ui/app/AppLayouts/Chat/ChatColumn.qml @@ -215,6 +215,10 @@ StackLayout { StatusChatInput { id: chatInput + visible: { + if (chatsModel.activeChannel.chatType !== Constants.chatTypePrivateGroupChat) return true; + return chatsModel.activeChannel.isMember + } anchors.bottom: parent.bottom recentStickers: chatsModel.recentStickers stickerPackList: chatsModel.stickerPacks