fix textarea not updating properly
ci/woodpecker/push/lint-backend Pipeline was successful Details
ci/woodpecker/push/build Pipeline was successful Details
ci/woodpecker/push/lint-client Pipeline failed Details
ci/woodpecker/push/test Pipeline failed Details

fixes #54
This commit is contained in:
Johann150 2022-08-03 22:28:06 +02:00
parent c8f49bae76
commit 585e4f5c42
Signed by: Johann150
GPG Key ID: 9EE6577A2A06F8F1
1 changed files with 1 additions and 1 deletions

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();