chore: format
This commit is contained in:
parent
06bed6f230
commit
8c497014d9
1 changed files with 2 additions and 1 deletions
|
@ -115,7 +115,8 @@ function tick(forceUpdateTicker = false) {
|
|||
now.value = _now;
|
||||
|
||||
const newInterval = (now.value - _time.value) / 1000; /* ms */
|
||||
const prev = currentInterval < 60 ? 10000 : currentInterval < 3600 ? 60000 : 180000;
|
||||
const prev =
|
||||
currentInterval < 60 ? 10000 : currentInterval < 3600 ? 60000 : 180000;
|
||||
const next = newInterval < 60 ? 10000 : newInterval < 3600 ? 60000 : 180000;
|
||||
|
||||
if (!tickId) {
|
||||
|
|
Loading…
Reference in a new issue