diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/bcrypt/bcrypt.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/bcrypt/bcrypt.vue b/src/tools/bcrypt/bcrypt.vue index b166764..55c0005 100644 --- a/src/tools/bcrypt/bcrypt.vue +++ b/src/tools/bcrypt/bcrypt.vue @@ -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 }"> |