From 3dba6f97c44b0e05450da1b1527dc02464e2ef7d Mon Sep 17 00:00:00 2001 From: Broque Thomas Date: Sat, 4 Oct 2025 17:28:03 -0700 Subject: [PATCH] Update script.js --- webui/static/script.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webui/static/script.js b/webui/static/script.js index c424e6e5..af2a5544 100644 --- a/webui/static/script.js +++ b/webui/static/script.js @@ -15368,11 +15368,11 @@ function createSimilarArtistBubble(artist) { bubble.appendChild(genres); } - // TODO: Add click handler when functionality is ready - // For now, just make it visually interactive + // Add click handler to navigate to artist detail page bubble.addEventListener('click', () => { console.log(`🎵 Clicked similar artist: ${artist.name} (ID: ${artist.id})`); - // Future: Navigate to this artist's detail page or trigger action + // Navigate to this artist's detail page (same as clicking from search results) + selectArtistForDetail(artist); }); return bubble;