fix: Disable reply editor outside WhatsApp reply window (#13454)

This commit is contained in:
Sivin Varghese
2026-02-17 14:07:36 +05:30
committed by GitHub
parent 39243b9e71
commit c5f6844877
5 changed files with 48 additions and 4 deletions

View File

@@ -33,6 +33,10 @@ export default {
type: Boolean,
default: false,
},
isEditorDisabled: {
type: Boolean,
default: false,
},
conversationId: {
type: Number,
default: null,
@@ -157,7 +161,7 @@ export default {
<div class="relative">
<NextButton
ghost
:disabled="disabled"
:disabled="disabled || isEditorDisabled"
:class="{
'text-n-violet-9 hover:enabled:!bg-n-violet-3': !showCopilotMenu,
'text-n-violet-9 bg-n-violet-3': showCopilotMenu,