From ca12facaf261b6d9d0e483126a7bda7ff4af2bdf Mon Sep 17 00:00:00 2001 From: Toby Chui Date: Thu, 9 Oct 2025 19:14:12 +0800 Subject: [PATCH] Fixed bug in sidebar plugin list update - Fixed remove plugin when the plugin is still running but plugin in sidebar not automatically removed bug --- src/web/components/plugins.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/web/components/plugins.html b/src/web/components/plugins.html index 43c02b2..d38d566 100644 --- a/src/web/components/plugins.html +++ b/src/web/components/plugins.html @@ -615,6 +615,7 @@ function uninstallPlugin(pluginId, pluginName, btn=undefined) { } else { msgbox(pluginName + " uninstalled successfully", true); initiatePluginList(); + initPluginSideMenu(); } } });