Browse Source

fix(gui-v2): set input to null as v1 when resetting plugins

pull/3364/head
Wing-Kam Wong 2 years ago
parent
commit
a1ef355a5a
  1. 2
      packages/nc-gui-v2/components/dashboard/settings/AppStore.vue

2
packages/nc-gui-v2/components/dashboard/settings/AppStore.vue

@ -30,7 +30,7 @@ const fetchPluginApps = async () => {
const resetPlugin = async () => {
try {
await $api.plugin.update(pluginApp.id, {
input: undefined,
input: null,
active: false,
})
message.success('Plugin uninstalled successfully')

Loading…
Cancel
Save