From ac2245e0fe4463a54956a347d3adaab7e270ac16 Mon Sep 17 00:00:00 2001 From: Domenico Tenace Date: Fri, 12 May 2023 10:27:31 +0200 Subject: [PATCH] fix: incorrect unit for group duration (fix issue #1837) --- .../src/features/timeline/TimelineEventInspector.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/app-frontend/src/features/timeline/TimelineEventInspector.vue b/packages/app-frontend/src/features/timeline/TimelineEventInspector.vue index af6f223ea..65319c6a9 100644 --- a/packages/app-frontend/src/features/timeline/TimelineEventInspector.vue +++ b/packages/app-frontend/src/features/timeline/TimelineEventInspector.vue @@ -121,7 +121,7 @@ export default defineComponent({ duration: { _custom: { value: inspectedEvent.group.duration, - display: `${inspectedEvent.group.duration} ms` + display: `${inspectedEvent.group.duration / 1000} ms` } } }