From 5e8c368b68f31fe49e8982dcf5d8d510185d8b90 Mon Sep 17 00:00:00 2001 From: DiTus Date: Wed, 25 Feb 2026 23:09:40 +0100 Subject: [PATCH] Remove non-existent removeIndicatorByIndex from export Line 773 was exporting removeIndicatorByIndex which doesn't exist as a function. Removed it from the export statement, keeping only addIndicator and removeIndicatorById which are both defined functions in the module. --- src/api/dashboard/static/js/ui/indicators-panel-new.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/dashboard/static/js/ui/indicators-panel-new.js b/src/api/dashboard/static/js/ui/indicators-panel-new.js index 94c25da..7d8dcc7 100644 --- a/src/api/dashboard/static/js/ui/indicators-panel-new.js +++ b/src/api/dashboard/static/js/ui/indicators-panel-new.js @@ -770,7 +770,7 @@ export function drawIndicatorsOnChart() { } // Export functions for module access -export { addIndicator, removeIndicatorById, removeIndicatorByIndex }; +export { addIndicator, removeIndicatorById }; // Legacy compatibility functions window.renderIndicatorList = renderIndicatorPanel;