diff --git a/src/components/NewConversationDialog/NewConversationDialog.vue b/src/components/NewConversationDialog/NewConversationDialog.vue index 41d5fd33e66..9622b1b7290 100644 --- a/src/components/NewConversationDialog/NewConversationDialog.vue +++ b/src/components/NewConversationDialog/NewConversationDialog.vue @@ -24,6 +24,7 @@

@@ -227,6 +228,11 @@ export default { || this.conversationName.length > CONVERSATION.MAX_NAME_LENGTH || this.newConversation.description.length > CONVERSATION.MAX_DESCRIPTION_LENGTH }, + + isFilled() { + return JSON.stringify(this.newConversation) !== JSON.stringify(NEW_CONVERSATION) + || this.listable !== CONVERSATION.LISTABLE.NONE || this.isAvatarEdited + }, }, watch: { diff --git a/src/components/NewMessage/NewMessagePollEditor.vue b/src/components/NewMessage/NewMessagePollEditor.vue index b18b2696a66..f411d9daa1f 100644 --- a/src/components/NewMessage/NewMessagePollEditor.vue +++ b/src/components/NewMessage/NewMessagePollEditor.vue @@ -23,6 +23,7 @@