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

@@ -835,3 +835,8 @@ Current v8 docs home: https://www.ayanova.com/docs/
BUILD 8.0.0-beta.1-rc3 CHANGES OF NOTE
- added dashboard docs page
- added dashboard widget "Scheduled" available to scheduleable users (techs) which shows today's work orders they are scheduled on
- added dashboard widget "Reviews" available to all dashboardable users which shows today's Reviews
- added dashboard widget "Reminders" available to all dashboardable users which shows today's Reminders

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() {