Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Herzberg <patrick@westberliner.net>2021-03-09 22:56:33 +0300
committerGitHub <noreply@github.com>2021-03-09 22:56:33 +0300
commitec2f6ccb7da42cacf574d4c0280f4fb2cfa4fd8b (patch)
tree5455827f7fcdf7bdd5f6eacdca97391793299a39
parent431105ae4d4815a290eeee5233c4b494430a7e15 (diff)
parent4e586fc3fd7e50c3bbe71e2126ac8feb9d28ce5b (diff)
Merge pull request #54 from st3iny/fix/noid/algo-select-sha1-dup
Fix invalid label of sha512
-rw-r--r--src/views/ChecksumTab.vue2
-rw-r--r--src/views/ChecksumTab20.vue2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/views/ChecksumTab.vue b/src/views/ChecksumTab.vue
index 3465efd..c9feb38 100644
--- a/src/views/ChecksumTab.vue
+++ b/src/views/ChecksumTab.vue
@@ -48,7 +48,7 @@ const algorithms = [
{ id: 'sha1', label: 'SHA1' },
{ id: 'sha256', label: 'SHA256' },
{ id: 'sha384', label: 'SHA384' },
- { id: 'sha512', label: 'SHA1' },
+ { id: 'sha512', label: 'SHA512' },
{ id: 'crc32', label: 'CRC32' },
{ id: 'crc32b', label: 'CRC32b' },
]
diff --git a/src/views/ChecksumTab20.vue b/src/views/ChecksumTab20.vue
index bbd972b..dd1d6a8 100644
--- a/src/views/ChecksumTab20.vue
+++ b/src/views/ChecksumTab20.vue
@@ -51,7 +51,7 @@ const algorithms = [
{ id: 'sha1', label: 'SHA1' },
{ id: 'sha256', label: 'SHA256' },
{ id: 'sha384', label: 'SHA384' },
- { id: 'sha512', label: 'SHA1' },
+ { id: 'sha512', label: 'SHA512' },
{ id: 'crc32', label: 'CRC32' },
{ id: 'crc32b', label: 'CRC32b' },
]