Skip to content

Commit

Permalink
Set minFrameSize to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
max611 committed Jan 31, 2020
1 parent 415eb81 commit 6b804d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/liquid-flamegraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default class LiquidFlamegraph {
.flamegraph()
.inverted(true)
.cellHeight(20)
.minFrameSize(5)
.minFrameSize(1)
.width(flameGraphWidth)
.label(function(node: FlamegraphNode) {
return `${node.data.name} took ${formatNodeTime(node.value)}ms`;
Expand Down

0 comments on commit 6b804d2

Please sign in to comment.