Skip to content

Commit

Permalink
fix: incorrect unit for group duration (fix issue vuejs#1837)
Browse files Browse the repository at this point in the history
  • Loading branch information
DomeT99 committed May 12, 2023
1 parent 122207d commit ac2245e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export default defineComponent({
duration: {
_custom: {
value: inspectedEvent.group.duration,
display: `${inspectedEvent.group.duration} ms`
display: `${inspectedEvent.group.duration / 1000} ms`
}
}
}
Expand Down

0 comments on commit ac2245e

Please sign in to comment.