diff --git a/src/components/FeatureIdeaCloud.tsx b/src/components/FeatureIdeaCloud.tsx index 35cfa9a..6af1897 100644 --- a/src/components/FeatureIdeaCloud.tsx +++ b/src/components/FeatureIdeaCloud.tsx @@ -229,8 +229,11 @@ export function FeatureIdeaCloud() { } return } - - if (tool === 'select' && !draggedIdea) { + } + + const handleIdeaDoubleClick = (idea: FeatureIdea, e: React.MouseEvent) => { + if (tool === 'select') { + e.stopPropagation() setSelectedIdea(idea) setViewDialogOpen(true) } @@ -528,7 +531,7 @@ export function FeatureIdeaCloud() {
-

💡 Tip: Drag ideas to move, scroll to zoom

+

💡 Tip: Double-click to view, drag to move, scroll to zoom

handleIdeaMouseDown(idea, e)} onClick={(e) => handleIdeaClick(idea, e)} + onDoubleClick={(e) => handleIdeaDoubleClick(idea, e)} >