From a1ef355a5abd99f76de52c90d1daa117a12f6ea4 Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Mon, 29 Aug 2022 17:29:26 +0800 Subject: [PATCH] fix(gui-v2): set input to null as v1 when resetting plugins --- packages/nc-gui-v2/components/dashboard/settings/AppStore.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nc-gui-v2/components/dashboard/settings/AppStore.vue b/packages/nc-gui-v2/components/dashboard/settings/AppStore.vue index 327080ccf1..22fc04598b 100644 --- a/packages/nc-gui-v2/components/dashboard/settings/AppStore.vue +++ b/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')