diff options
| author | futchitwo <74236683+futchitwo@users.noreply.github.com> | 2021-11-19 00:38:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-19 00:38:20 +0900 |
| commit | 9d67857a3470ef54b58bead7f9729fb1dd9f5744 (patch) | |
| tree | 8fc63e4c68f01c55549bb5c56541298e022bc9b4 | |
| parent | lint: add missing semicolon (diff) | |
| download | misskey-9d67857a3470ef54b58bead7f9729fb1dd9f5744.tar.gz misskey-9d67857a3470ef54b58bead7f9729fb1dd9f5744.tar.bz2 misskey-9d67857a3470ef54b58bead7f9729fb1dd9f5744.zip | |
fix(client): fix plugin activate and uninstall (#7991)
* fix(client): fix plugin activate and uninstall
* Fix(client): fix package activates
| -rw-r--r-- | packages/client/src/pages/settings/plugin.manage.vue | 3 |
1 files changed, 2 insertions, 1 deletions
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: { |