From 11e28341dfc4accb700717be3677bdf1da03d766 Mon Sep 17 00:00:00 2001 From: Boris Kubiak Date: Tue, 8 Feb 2022 16:22:11 +0100 Subject: [PATCH] Fix initial number of threads --- src/vue/Input.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vue/Input.vue b/src/vue/Input.vue index f28cda4..e92baa3 100644 --- a/src/vue/Input.vue +++ b/src/vue/Input.vue @@ -63,7 +63,7 @@ />

 threads - (recommended) + (recommended)
@@ -104,7 +104,7 @@ }, data: function () { return { - threads: 4, + threads: this.$props.cores || 4, hex: '', checksum: true, suffix: false,