fix textarea not updating properly

fixes FoundKeyGang/FoundKey#54
This commit is contained in:
Johann150 2022-08-03 22:28:06 +02:00
parent c8f49bae76
commit 585e4f5c42
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -95,7 +95,7 @@ const updated = (): void => {
};
const debouncedUpdated = debounce(1000, updated);
watch(modelValue, () => {
watch($$(v), () => {
if (!props.manualSave) {
if (props.debounce) {
debouncedUpdated();