mirror of
https://github.com/stagehacks/Cue-View.git
synced 2026-07-26 09:18:39 +00:00
bugfix number formatting
This commit is contained in:
+1
-1
@@ -30,7 +30,7 @@ class Cue {
|
||||
|
||||
const num = Math.round(milliseconds / 100) / 10;
|
||||
if (box) {
|
||||
return `<div class="time">"${num}"</div>`;
|
||||
return `<div class="time">${num}</div>`;
|
||||
}
|
||||
|
||||
return num;
|
||||
|
||||
Reference in New Issue
Block a user