prevent all monitors making requests at the same moment when start the server

This commit is contained in:
LouisLam
2021-08-19 18:41:31 +08:00
parent 30b8d3d0ab
commit 209e44c2e1
2 changed files with 8 additions and 2 deletions

View File

@@ -43,7 +43,11 @@ export default {
},
shortBeatList() {
let placeholders = []
if (! this.beatList) {
return [];
}
let placeholders = [];
let start = this.beatList.length - this.maxBeat;