diff --git a/packages/client/src/pages/settings/plugin.manage.vue b/packages/client/src/pages/settings/plugin.manage.vue index 3a0168d13d..1b452fa55d 100644 --- a/packages/client/src/pages/settings/plugin.manage.vue +++ b/packages/client/src/pages/settings/plugin.manage.vue @@ -3,7 +3,7 @@ <FormGroup v-for="plugin in plugins" :key="plugin.id"> <template #label><span style="display: flex;"><b>{{ plugin.name }}</b><span style="margin-left: auto;">v{{ plugin.version }}</span></span></template> - <FormSwitch :value="plugin.active" @update:modelValue="changeActive(plugin, $event)">{{ $ts.makeActive }}</FormSwitch> + <FormSwitch :modelValue="plugin.active" @update:modelValue="changeActive(plugin, $event)">{{ $ts.makeActive }}</FormSwitch> <div class="_debobigegoItem"> <div class="_debobigegoPanel" style="padding: 16px;"> <div class="_keyValue"> @@ -41,6 +41,7 @@ import FormGroup from '@/components/debobigego/group.vue'; import * as os from '@/os'; import { ColdDeviceStorage } from '@/store'; import * as symbols from '@/symbols'; +import { unisonReload } from '@/scripts/unison-reload'; export default defineComponent({ components: {