Skip to content

Commit a0e906c

Browse files
authored
fix(timeline): incorrect unit for group duration (fix issue #1837) (#2067)
1 parent 0dee328 commit a0e906c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/app-frontend/src/features/timeline/TimelineEventInspector.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export default defineComponent({
121121
duration: {
122122
_custom: {
123123
value: inspectedEvent.group.duration,
124-
display: `${inspectedEvent.group.duration} ms`
124+
display: `${inspectedEvent.group.duration / 1000} ms`
125125
}
126126
}
127127
}

0 commit comments

Comments
 (0)