Fix nasty bug
This commit is contained in:
parent
2103d4ff1d
commit
50a921fd66
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
<template>
|
||||
<div>
|
||||
<div class="container">
|
||||
<!--Headline-->
|
||||
<headline></headline>
|
||||
|
||||
<!--Description-->
|
||||
|
@ -123,7 +124,7 @@
|
|||
|
||||
// Remove unwanted workers
|
||||
if (this.workers.length > this.threads) {
|
||||
for (let w = this.threads - 1; w < this.workers.length; w++) {
|
||||
for (let w = this.threads; w < this.workers.length; w++) {
|
||||
this.workers[w].terminate();
|
||||
}
|
||||
this.workers = this.workers.slice(0, this.threads);
|
||||
|
|
Loading…
Add table
Reference in a new issue