Fix: strange numbers
This commit is contained in:
parent
e3f22606a6
commit
233f3e88c2
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ document.addEventListener("alpine:init", () => {
|
|||
}
|
||||
case 3: {
|
||||
this.time =
|
||||
((new Date().getTime() - this.startedAt) / 1000).toFixed(2) * 1000;
|
||||
parseInt(((new Date().getTime() - this.startedAt) / 1000).toFixed(2) * 1000);
|
||||
this.startedAt = null;
|
||||
sayNumber(this.time / 10);
|
||||
|
||||
|
|
Loading…
Reference in a new issue