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.
1 parent 325c4ca commit 1ff366aCopy full SHA for 1ff366a
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