From 55a5680d06b59f0813b78c283b9ec72436372c23 Mon Sep 17 00:00:00 2001 From: "Wortman, Elliot (UG - Comp Sci & Elec Eng)" <ew00710@surrey.ac.uk> Date: Thu, 30 Nov 2023 12:32:03 +0000 Subject: [PATCH] Increase /value call rate to 7s from 5s --- src/components/ValueTabs.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ValueTabs.vue b/src/components/ValueTabs.vue index 7dbf367..82c43d0 100644 --- a/src/components/ValueTabs.vue +++ b/src/components/ValueTabs.vue @@ -16,7 +16,7 @@ export default { const tooltipList = [...tooltipTriggerList].map(tooltipTriggerEl => new bootstrap.Tooltip(tooltipTriggerEl)) this.getValues(); - setInterval(this.getValues, 5000); + setInterval(this.getValues, 7000); }, methods: { getValues() { -- GitLab