Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/WR24' into WR24
Browse files Browse the repository at this point in the history
  • Loading branch information
l-1squared committed Mar 1, 2024
2 parents b7039c3 + b0b3012 commit 1f5b309
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions new/src/components/utils.ts
Original file line number Diff line number Diff line change
@@ -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)` : "";
}

0 comments on commit 1f5b309

Please sign in to comment.