From 48e11f19edf800abe31eba32baca8752c30fa228 Mon Sep 17 00:00:00 2001 From: master3395 Date: Mon, 19 Jan 2026 23:36:50 +0100 Subject: [PATCH] Update uninstall confirmation message - Change message to warn that all data will be deleted - Apply to both local and store uninstall functions --- pluginHolder/templates/pluginHolder/plugins.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pluginHolder/templates/pluginHolder/plugins.html b/pluginHolder/templates/pluginHolder/plugins.html index 6a01b3077..a3505507c 100644 --- a/pluginHolder/templates/pluginHolder/plugins.html +++ b/pluginHolder/templates/pluginHolder/plugins.html @@ -1363,7 +1363,7 @@ function installFromStore(pluginName) { } function uninstallPluginFromStore(pluginName) { - if (!confirm(`Uninstall ${pluginName}? This will remove the plugin from your system.`)) { + if (!confirm(`Are you sure you want to uninstall ${pluginName}? All data from this plugin will be deleted.`)) { return; } @@ -1474,7 +1474,7 @@ function installPlugin(pluginName) { } function uninstallPlugin(pluginName) { - if (!confirm(`Uninstall ${pluginName}? This will remove the plugin from your system.`)) { + if (!confirm(`Are you sure you want to uninstall ${pluginName}? All data from this plugin will be deleted.`)) { return; }