From 585e4f5c42cfafb6cdf7eb601ab435d6a4d85a96 Mon Sep 17 00:00:00 2001 From: Johann150 Date: Wed, 3 Aug 2022 22:28:06 +0200 Subject: [PATCH] fix textarea not updating properly fixes https://akkoma.dev/FoundKeyGang/FoundKey/issues/54 --- packages/client/src/components/form/textarea.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/client/src/components/form/textarea.vue b/packages/client/src/components/form/textarea.vue index 347454f67..f2b5a4e74 100644 --- a/packages/client/src/components/form/textarea.vue +++ b/packages/client/src/components/form/textarea.vue @@ -95,7 +95,7 @@ const updated = (): void => { }; const debouncedUpdated = debounce(1000, updated); -watch(modelValue, () => { +watch($$(v), () => { if (!props.manualSave) { if (props.debounce) { debouncedUpdated();