From 3e5ca9bca95df2c7ea5d1dc86e04f8a79724281f Mon Sep 17 00:00:00 2001 From: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Date: Wed, 9 Jul 2025 09:23:20 +0530 Subject: [PATCH] fix: Widget message input resize issue (#11896) --- app/javascript/shared/components/ResizableTextArea.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/javascript/shared/components/ResizableTextArea.vue b/app/javascript/shared/components/ResizableTextArea.vue index 088753a23..4dda62cf9 100644 --- a/app/javascript/shared/components/ResizableTextArea.vue +++ b/app/javascript/shared/components/ResizableTextArea.vue @@ -69,7 +69,7 @@ export default { }, }, watch: { - value() { + modelValue() { this.resizeTextarea(); // 🚨 watch triggers every time the value is changed, we cannot set this to focus then // when this runs, it sets the cursor to the end of the body, ignoring the signature