Skip to content

Commit

Permalink
Change representation of exponent in script file
Browse files Browse the repository at this point in the history
  • Loading branch information
sohamkamani committed Sep 30, 2018
1 parent 530fbdb commit 4852d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detective-dashboard/static/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ fetch('/getStatus', {
.append('text')
.attr('class', 'latency')
.text((d) => {
const ms = Math.round(d.target.data.latency / 10e4) / 10
const ms = Math.round(d.target.data.latency / 1e5) / 10
return ms + 'ms'
})
.attr('dy', -3)
Expand Down

0 comments on commit 4852d26

Please sign in to comment.