From 8803556920ae411e859b2a4f65c3e5f6fd06f9ab Mon Sep 17 00:00:00 2001 From: Chuck Date: Mon, 5 Jan 2026 14:19:08 -0500 Subject: [PATCH] Fix: Add array-of-objects functions after IIFE ends The functions were removed from inside the IIFE but never added after it. Also removed orphaned code that was causing syntax errors. --- web_interface/static/v3/plugins_manager.js | 1 - 1 file changed, 1 deletion(-) diff --git a/web_interface/static/v3/plugins_manager.js b/web_interface/static/v3/plugins_manager.js index 5f73db7b..4738ce72 100644 --- a/web_interface/static/v3/plugins_manager.js +++ b/web_interface/static/v3/plugins_manager.js @@ -3437,7 +3437,6 @@ window.updateKeyValuePairData = function(fieldId, fullKey) { hiddenInput.value = JSON.stringify(pairs); }; - const itemsContainer = document.getElementById(fieldId + '_items'); const hiddenInput = document.getElementById(fieldId + '_data'); if (!itemsContainer || !hiddenInput) return;