fix(typos): fixed more typos & uppercase JSON (#475)

* fix(About): typo

* uppercase json & typos
This commit is contained in:
Marvin 2023-06-23 15:23:47 +02:00 committed by GitHub
parent 7068610438
commit 9526ed8324
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 13 deletions

View File

@ -55,7 +55,7 @@ const { tracker } = useTracker();
in the GitHub repository.
</n-p>
<n-p>
And if you found a bug, or something doesn't work as expected, please fill a bug report in the
And if you found a bug, or something doesn't work as expected, please file a bug report in the
<c-link
href="https://github.com/CorentinTh/it-tools/issues/new/choose"
rel="noopener"

View File

@ -23,8 +23,8 @@ const jsonValidationRules = [
<c-input-text
v-model:value="rawLeftJson"
:validation-rules="jsonValidationRules"
label="Your first json"
placeholder="Paste your first json here..."
label="Your first JSON"
placeholder="Paste your first JSON here..."
rows="20"
multiline
test-id="leftJson"
@ -34,8 +34,8 @@ const jsonValidationRules = [
<c-input-text
v-model:value="rawRightJson"
:validation-rules="jsonValidationRules"
label="Your json to compare"
placeholder="Paste your json to compare here..."
label="Your JSON to compare"
placeholder="Paste your JSON to compare here..."
rows="20"
multiline
test-id="rightJson"

View File

@ -16,10 +16,10 @@ const rules: UseValidationRule<string>[] = [
<template>
<format-transformer
input-label="Your raw json"
input-label="Your raw JSON"
:input-default="defaultValue"
input-placeholder="Paste your raw json here..."
output-label="Minify version of your JSON"
input-placeholder="Paste your raw JSON here..."
output-label="Minified version of your JSON"
output-language="json"
:input-validation-rules="rules"
:transformer="transformer"

View File

@ -23,8 +23,8 @@ const rules: UseValidationRule<string>[] = [
<template>
<format-transformer
input-label="Your raw json"
input-placeholder="Paste your raw json here..."
input-label="Your raw JSON"
input-placeholder="Paste your raw JSON here..."
output-label="CSV version of your JSON"
:input-validation-rules="rules"
:transformer="transformer"

View File

@ -37,14 +37,14 @@ const rawJsonValidation = useValidation({
</div>
<n-form-item
label="Your raw json"
label="Your raw JSON"
:feedback="rawJsonValidation.message"
:validation-status="rawJsonValidation.status"
>
<n-input
ref="inputElement"
v-model:value="rawJson"
placeholder="Paste your raw json here..."
placeholder="Paste your raw JSON here..."
type="textarea"
rows="20"
autocomplete="off"
@ -53,7 +53,7 @@ const rawJsonValidation = useValidation({
spellcheck="false"
/>
</n-form-item>
<n-form-item label="Prettify version of your json">
<n-form-item label="Prettified version of your JSON">
<TextareaCopyable :value="cleanJson" language="json" :follow-height-of="inputElement" />
</n-form-item>
</template>