diff --git a/.detective/config.json b/.detective/config.json index 13576a0..dcae988 100644 --- a/.detective/config.json +++ b/.detective/config.json @@ -1,12 +1,21 @@ { "scopes": [ - "apps/backend/src/services", - "apps/backend/src/utils", - "apps/backend/src/options", "apps/backend/src/model", - "apps/backend/src/infrastructure" + "apps/frontend/src/app/data", + "apps/frontend/src/app/features", + "apps/frontend/src/app/model", + "apps/frontend/src/app/shell", + "apps/frontend/src/app/ui", + "apps/frontend/src/app/utils" + ], + "groups": [ + "apps/backend/src", + "apps/backend", + "apps/frontend/src/app", + "apps/frontend/src", + "apps/frontend", + "apps" ], - "groups": ["apps/backend/src", "apps/backend", "apps"], "entries": [], "filter": { "files": [], diff --git a/apps/frontend/src/app/ui/graph/graph.ts b/apps/frontend/src/app/ui/graph/graph.ts index 5343ebe..11bc6cb 100644 --- a/apps/frontend/src/app/ui/graph/graph.ts +++ b/apps/frontend/src/app/ui/graph/graph.ts @@ -168,6 +168,10 @@ function defineToolTipsForNodes(cy: cytoscape.Core) { return; } + node.on('tap', (event) => { + event.stopPropagation(); + }); + const nodeWithQtip = node as NodeWithQtip; nodeWithQtip.qtip({ content: tooltip,