logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: 78e4f0ecd877c289ba1ca71142743e38864b968c
parent 5a2080570f5ff82ec4fcaac54752f8d04df21a80
Author: Henry Jameson <me@hjkos.com>
Date:   Wed,  9 Oct 2024 23:53:30 +0300

fix setting components not working with v-model

Diffstat:

Msrc/components/settings_modal/helpers/setting.js2+-
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 @@ -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':