fix textarea not updating properly

fixes FoundKeyGang/FoundKey#54
This commit is contained in:
Johann150 2022-08-03 22:28:06 +02:00 committed by ThatOneCalculator
parent db6907a6fa
commit 1fffcff4bc
2 changed files with 3 additions and 2 deletions

View File

@ -80,4 +80,5 @@
- 0f6d94f1e7e1f58cfbf8d07e5f835f8de626842e: backend: improve mutes and blocks
- e2bf2715a6462ed377b033956d65260157f042ea: fix spelling error
- 09a7eabda137e77f81ab31f65d69329670693c8d: backend: fix lint "no-throw-literal"
-
- 4fbe2e065e75ed3e5b4dfdfd4be3baa03cc447c3: client: fix lint "quotes"
- 585e4f5c42cfafb6cdf7eb601ab435d6a4d85a96: fix textarea not updating properly

View File

@ -137,7 +137,7 @@ export default defineComponent({
v.value = newValue;
});
watch(v, newValue => {
watch($$(v), () => {
if (!props.manualSave) {
if (props.debounce) {
debouncedUpdated();