Skip to content

Commit

Permalink
Merge pull request #165 from buggregator/hotfix/call-graph-default-me…
Browse files Browse the repository at this point in the history
…tric

Sets Wall Time as a default metric for call graph profiler
  • Loading branch information
Kreezag authored Jun 12, 2024
2 parents f4b4ec6 + 0bc90a1 commit 9d1d152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/screens/profiler/ui/call-graph/call-graph.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ type Props = {
const props = defineProps<Props>();
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);
Expand Down

0 comments on commit 9d1d152

Please sign in to comment.