From 8ef3a8254534aefc6073167d3e0db7a97b97dff7 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 23 Feb 2022 23:44:26 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 5 +++++ ayanova/src/components/dash-base.vue | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index d816ae50..e9c1818a 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -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 + diff --git a/ayanova/src/components/dash-base.vue b/ayanova/src/components/dash-base.vue index 4d51913e..347cef5a 100644 --- a/ayanova/src/components/dash-base.vue +++ b/ayanova/src/components/dash-base.vue @@ -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() {