mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-01-01 13:12:59 +08:00
refactor(bcrypt): fix typo (#604)
This commit is contained in:
parent
d1dff428d8
commit
e18bae1fca
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ const compareMatch = computed(() => compareSync(compareString.value, compareHash
|
|||
<c-input-text v-model:value="compareString" placeholder="Your string to compare..." raw-text />
|
||||
</n-form-item>
|
||||
<n-form-item label="Your hash: " label-placement="left">
|
||||
<c-input-text v-model:value="compareHash" placeholder="Your hahs to compare..." raw-text />
|
||||
<c-input-text v-model:value="compareHash" placeholder="Your hash to compare..." raw-text />
|
||||
</n-form-item>
|
||||
<n-form-item label="Do they match ? " label-placement="left" :show-feedback="false">
|
||||
<div class="compare-result" :class="{ positive: compareMatch }">
|
||||
|
|
Loading…
Reference in a new issue