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 8e78cb5..85f560a 100644
--- a/src/api/dashboard/static/js/ui/indicators-panel-new.js
+++ b/src/api/dashboard/static/js/ui/indicators-panel-new.js
@@ -148,10 +148,10 @@ export function renderIndicatorPanel() {
- ${favoriteIds.size > 0 ? `
+ ${[...favoriteIds].length > 0 ? `
★ Favorites
- ${favoriteIds.map(id => {
+ ${[...favoriteIds].map(id => {
const ind = available.find(a => {
// Find matching indicator by type
return a.type === id || (activeIndicators.find(ai => ai.id === id)?.type === '');
@@ -200,11 +200,9 @@ function renderIndicatorItem(indicator, isFavorite) {
${indicator.description || ''}
-
+
${isFavorite ? '' : `
-