This commit is contained in:
2022-02-23 23:44:26 +00:00
parent 9223635c18
commit 8ef3a82545
2 changed files with 6 additions and 1 deletions

View File

@@ -184,7 +184,7 @@ export default {
if (this.updateFrequency > 0) {
this.timer = setInterval(() => {
this.refresh();
}, this.updateFrequency + window.$gz.util.getRandomInt(30000)); //add up to 30 seconds so they don't all fire at once
}, this.updateFrequency + window.$gz.util.getRandomInt(60000)); //add up to 60 seconds so they don't all fire at once
}
},
beforeDestroy() {