Skip to content

Commit

Permalink
[Tizen/web] Use only 3 digits after decimal point
Browse files Browse the repository at this point in the history
This patch removes meaningless dicimal points.

Signed-off-by: Yelin Jeong <[email protected]>
  • Loading branch information
niley7464 committed Oct 7, 2024
1 parent 80d56e5 commit d511590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tizen.web/ImageClassificationOffloading/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function sinkListenerCallback(sinkName, data) {
label.innerText = labels[maxIdx];

const time = document.getElementById("time_" + type);
time.innerText = type + " : " + (endTime - startTime) + " ms";
time.innerText = type + " : " + (endTime - startTime).toFixed(3) + " ms";
}

/**
Expand Down

0 comments on commit d511590

Please sign in to comment.