Fix initial number of threads
This commit is contained in:
parent
1c4271a4f3
commit
11e28341df
1 changed files with 2 additions and 2 deletions
|
@ -63,7 +63,7 @@
|
||||||
/>
|
/>
|
||||||
<h4 v-text="threads"></h4>
|
<h4 v-text="threads"></h4>
|
||||||
<span> threads</span>
|
<span> threads</span>
|
||||||
<span v-if="threads === cores">(recommended)</span>
|
<span v-if="threads === cores"> (recommended)</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-6 col-sm-12">
|
<div class="col-lg-6 col-sm-12">
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
},
|
},
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
threads: 4,
|
threads: this.$props.cores || 4,
|
||||||
hex: '',
|
hex: '',
|
||||||
checksum: true,
|
checksum: true,
|
||||||
suffix: false,
|
suffix: false,
|
||||||
|
|
Loading…
Add table
Reference in a new issue