diff --git a/new/src/components/utils.ts b/new/src/components/utils.ts index 0009142d..3a2ee647 100644 --- a/new/src/components/utils.ts +++ b/new/src/components/utils.ts @@ -1,4 +1,3 @@ export function addRuntime(input: { durationInNanos: number }): string { - return input.durationInNanos > 1e9 ? `(${(input.durationInNanos / 1e9).toFixed(3)}s)` : ""; - //`(${Math.round(input.durationInNanos/1e6)}ms)` : ""; + return input.durationInNanos > 1e7 ? `(${(input.durationInNanos / 1e9).toFixed(3)}s)` : ""; }