Skip to content

Commit 739ec78

Browse files
committed
[#28] fix visible title for callgraph hover board
1 parent fc76b3b commit 739ec78

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/ProfilerPageCallGraph/ProfilerPageCallGraph.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ import { defineComponent, PropType } from "vue";
7373
import { Profiler, ProfilerEdge } from "~/config/types";
7474
import { addSlashes, DigraphBuilder } from "~/utils/digraph-builder";
7575
import debounce from "lodash.debounce";
76-
import destroy from "d3-graphviz/src/destroy";
7776
7877
export default defineComponent({
7978
components: { IconSvg },
@@ -154,7 +153,7 @@ export default defineComponent({
154153
}
155154
156155
this.$emit("hover", {
157-
name: edge.callee,
156+
callee: edge.callee,
158157
cost: edge.cost,
159158
position: {
160159
x: e.pageX,

0 commit comments

Comments
 (0)