From 052d3b89dd98e44fd885aecc646fd4260e273d61 Mon Sep 17 00:00:00 2001 From: Ian Gulliver Date: Fri, 30 Jan 2026 11:04:37 -0800 Subject: [PATCH] Fix click targets for flow links in hover cards Co-Authored-By: Claude Opus 4.5 --- static/index.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/static/index.html b/static/index.html index 2621ef8..14e7c1a 100644 --- a/static/index.html +++ b/static/index.html @@ -894,6 +894,7 @@ .clickable-value, .node-name { cursor: pointer; + display: inline-block; } @@ -1410,7 +1411,6 @@ const val = document.createElement('span'); val.className = 'clickable-value'; val.textContent = item; - val.style.cursor = 'pointer'; val.addEventListener('click', (e) => { e.stopPropagation(); if (flowInfo && flowInfo.universes && flowInfo.universes[idx] !== undefined) { @@ -1472,7 +1472,6 @@ const val = document.createElement('span'); val.className = 'clickable-value'; val.textContent = line; - val.style.cursor = 'pointer'; val.addEventListener('click', (e) => { e.stopPropagation(); if (sourceNodeId && peerNodeId) {