Skip to content

Commit 9d1d152

Browse files
authored
Merge pull request #165 from buggregator/hotfix/call-graph-default-metric
Sets Wall Time as a default metric for call graph profiler
2 parents f4b4ec6 + 0bc90a1 commit 9d1d152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/screens/profiler/ui/call-graph/call-graph.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type Props = {
1313
1414
const props = defineProps<Props>();
1515
const isFullscreen = ref(false);
16-
const metric = ref(GraphTypes.CPU as GraphTypes);
16+
const metric = ref(GraphTypes.WALL_TIME as GraphTypes);
1717
const threshold = ref(1);
1818
const percent = ref(10);
1919

0 commit comments

Comments
 (0)