From 08d2090087ec35ebdac1f01bfc715591ed210a9c Mon Sep 17 00:00:00 2001 From: Sonja Happ Date: Wed, 30 Sep 2020 13:46:38 +0200 Subject: [PATCH] Increase refresh interval for ICs to 10 sec --- src/ic/ics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ic/ics.js b/src/ic/ics.js index 43101d2..7dc2057 100644 --- a/src/ic/ics.js +++ b/src/ic/ics.js @@ -90,7 +90,7 @@ class InfrastructureComponents extends Component { }); // Start timer for periodic refresh - this.timer = window.setInterval(() => this.refresh(), 1000); + this.timer = window.setInterval(() => this.refresh(), 10000); } componentWillUnmount() {