mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-01-04 06:34:44 +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 />
|
<c-input-text v-model:value="compareString" placeholder="Your string to compare..." raw-text />
|
||||||
</n-form-item>
|
</n-form-item>
|
||||||
<n-form-item label="Your hash: " label-placement="left">
|
<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>
|
||||||
<n-form-item label="Do they match ? " label-placement="left" :show-feedback="false">
|
<n-form-item label="Do they match ? " label-placement="left" :show-feedback="false">
|
||||||
<div class="compare-result" :class="{ positive: compareMatch }">
|
<div class="compare-result" :class="{ positive: compareMatch }">
|
||||||
|
|
Loading…
Reference in a new issue