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 d4843e8..6b075df 100644 --- a/src/api/dashboard/static/js/ui/indicators-panel-new.js +++ b/src/api/dashboard/static/js/ui/indicators-panel-new.js @@ -108,7 +108,6 @@ export function renderIndicatorPanel() { const available = getAvailableIndicators(); const catalog = available.filter(ind => { - console.log("[IndicatorPanel] Total indicators:", available.length, "Filtered to:", catalog.length); if (searchQuery && !ind.name.toLowerCase().includes(searchQuery.toLowerCase())) return false; if (selectedCategory === 'all') return true; if (selectedCategory === 'favorites') return false; @@ -116,6 +115,8 @@ export function renderIndicatorPanel() { return cat === selectedCategory; }); + console.log("[IndicatorPanel] Total indicators:", available.length, "Filtered to:", catalog.length); + const favoriteIds = new Set(userPresets.favorites || []); container.innerHTML = `