From 0bc90a11236971b7d2ccd4477f9a0d4795396b97 Mon Sep 17 00:00:00 2001 From: butschster Date: Tue, 11 Jun 2024 23:37:26 +0400 Subject: [PATCH] Sets Wall Time as a default metric for call graph profiler --- src/screens/profiler/ui/call-graph/call-graph.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/screens/profiler/ui/call-graph/call-graph.vue b/src/screens/profiler/ui/call-graph/call-graph.vue index eb3ffddf..f32366fa 100644 --- a/src/screens/profiler/ui/call-graph/call-graph.vue +++ b/src/screens/profiler/ui/call-graph/call-graph.vue @@ -13,7 +13,7 @@ type Props = { const props = defineProps(); const isFullscreen = ref(false); -const metric = ref(GraphTypes.CPU as GraphTypes); +const metric = ref(GraphTypes.WALL_TIME as GraphTypes); const threshold = ref(1); const percent = ref(10);