diff --git a/src/views/dashboard/related/network-profiling/components/Graph/linkProcess.ts b/src/views/dashboard/related/network-profiling/components/Graph/linkProcess.ts index 15a32aaa..562a509f 100644 --- a/src/views/dashboard/related/network-profiling/components/Graph/linkProcess.ts +++ b/src/views/dashboard/related/network-profiling/components/Graph/linkProcess.ts @@ -53,7 +53,7 @@ export const linkElement = (graph: any) => { export const anchorElement = (graph: any, funcs: any, tip: any) => { const linkEnter = graph .append("g") - .attr("style", "cursor: move;") + .attr("class", "topo-line-anchor") .on("mouseover", function (event: unknown, d: unknown) { tip.html(funcs.tipHtml).show(d, this); }) diff --git a/src/views/dashboard/related/network-profiling/components/ProcessTopology.vue b/src/views/dashboard/related/network-profiling/components/ProcessTopology.vue index 971f8099..fbf9f810 100644 --- a/src/views/dashboard/related/network-profiling/components/ProcessTopology.vue +++ b/src/views/dashboard/related/network-profiling/components/ProcessTopology.vue @@ -453,6 +453,10 @@ watch( cursor: move; } +.topo-line-anchor { + cursor: pointer; +} + .switch-icon-edit { cursor: pointer; transition: all 0.5ms linear;