From caf81efec4b3de51f857a58a0b0911d765b25d0d Mon Sep 17 00:00:00 2001 From: Maximilian Martin Date: Sat, 17 Jan 2026 19:50:06 +0100 Subject: [PATCH] fix: improve reactivity by reducing debounce time for value changes Signed-off-by: Maximilian Martin --- src/mixins/PropertyMixin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixins/PropertyMixin.js b/src/mixins/PropertyMixin.js index aa116fb6d..b6d9bfc7c 100644 --- a/src/mixins/PropertyMixin.js +++ b/src/mixins/PropertyMixin.js @@ -114,7 +114,7 @@ export default { updateValue: debounce(function(e) { // https://vuejs.org/v2/guide/components-custom-events.html#sync-Modifier this.$emit('update:value', this.localValue) - }, 500), + }, 250), updateType: debounce(function(e) { // https://vuejs.org/v2/guide/components-custom-events.html#sync-Modifier