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

@ -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>