From d57be3ffae7bbd0cc3ac19f2c6499358aa79b21f Mon Sep 17 00:00:00 2001 From: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com> Date: Fri, 14 Jan 2022 00:24:00 +0530 Subject: [PATCH] fix: Allow private note without selecting a tweet (#3754) --- .../dashboard/components/widgets/conversation/ReplyBox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue index f474e3e76..83c209f8e 100644 --- a/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue +++ b/app/javascript/dashboard/components/widgets/conversation/ReplyBox.vue @@ -189,7 +189,7 @@ export default { return this.maxLength - this.message.length; }, isReplyButtonDisabled() { - if (this.isATweet && !this.inReplyTo) { + if (this.isATweet && !this.inReplyTo && !this.isOnPrivateNote) { return true; }