Increased timeout for ui update

This commit is contained in:
kunkliricsi 2020-11-21 20:14:30 +01:00
parent 9af0ba1bb8
commit 3cdaa2dc35
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}