From 3cdaa2dc3560f8ce1a256197a06d2df4ab4ebb74 Mon Sep 17 00:00:00 2001 From: kunkliricsi Date: Sat, 21 Nov 2020 20:14:30 +0100 Subject: [PATCH] Increased timeout for ui update --- Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx b/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx index f4c5aef..d5750ed 100644 --- a/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx +++ b/Birdmap.API/ClientApp/src/components/dashboard/Dashboard.jsx @@ -250,7 +250,7 @@ class Dashboard extends Component { const processHeatmapItem = processMethod.bind(this); const onFinished = finishMethod.bind(this) - this.performTask(this.context.heatmapPoints, Math.ceil(this.context.heatmapPoints.length / 100), 10, + this.performTask(this.context.heatmapPoints, Math.ceil(this.context.heatmapPoints.length / 50), 20, processHeatmapItem, onFinished); }