From 78e4f0ecd877c289ba1ca71142743e38864b968c Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 9 Oct 2024 23:53:30 +0300 Subject: [PATCH] fix setting components not working with v-model --- src/components/settings_modal/helpers/setting.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/settings_modal/helpers/setting.js b/src/components/settings_modal/helpers/setting.js index 6c5dd76e..2dc9653e 100644 --- a/src/components/settings_modal/helpers/setting.js +++ b/src/components/settings_modal/helpers/setting.js @@ -170,7 +170,7 @@ export default { }, configSink () { if (this.path == null) { - return (k, v) => this.$emit('modelValue:update', v) + return (k, v) => this.$emit('update:modelValue', v) } switch (this.realSource) { case 'profile':