We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 325c4ca + 1ff366a commit 58a1c62Copy full SHA for 58a1c62
src/view/components/profiler/components/CommitInfo/CommitInfo.tsx
@@ -22,10 +22,10 @@ export function CommitInfo() {
22
<SidebarPanel title="Commit Stats">
23
<dl class={s.list}>
24
<dt class={s.title}>Start:</dt>
25
- <dd class={s.value}>{formatTime(root.startTime / 1000)}</dd>
+ <dd class={s.value}>{formatTime(root.startTime)}</dd>
26
<br />
27
<dt class={s.title}>Duration:</dt>
28
- <dd class={s.value}>{formatTime(commit.duration / 1000)} </dd>
+ <dd class={s.value}>{formatTime(commit.duration)} </dd>
29
</dl>
30
</SidebarPanel>
31
);
0 commit comments