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>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
<!--Headline-->
|
||||||
<headline></headline>
|
<headline></headline>
|
||||||
|
|
||||||
<!--Description-->
|
<!--Description-->
|
||||||
|
@ -123,7 +124,7 @@
|
||||||
|
|
||||||
// Remove unwanted workers
|
// Remove unwanted workers
|
||||||
if (this.workers.length > this.threads) {
|
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[w].terminate();
|
||||||
}
|
}
|
||||||
this.workers = this.workers.slice(0, this.threads);
|
this.workers = this.workers.slice(0, this.threads);
|
||||||
|
|
Loading…
Add table
Reference in a new issue