aboutsummaryrefslogtreecommitdiff
path: root/src/tools/json-diff/json-diff.vue
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2023-05-14 21:26:18 +0200
committerGravatar Corentin THOMASSET <corentin.thomasset74@gmail.com> 2023-05-14 22:30:23 +0200
commit77f2efc0b92847c3b1198446f4b520ecb2263164 (patch)
tree942ea5ffd922dbe7a9913e235a4fae17b117c925 /src/tools/json-diff/json-diff.vue
parentaad8d84e13ce31c1b7c1cbb930fb8bd4c0abe13a (diff)
downloadit-tools-77f2efc0b92847c3b1198446f4b520ecb2263164.tar.gz
it-tools-77f2efc0b92847c3b1198446f4b520ecb2263164.tar.zst
it-tools-77f2efc0b92847c3b1198446f4b520ecb2263164.zip
refactor(ui): replaced some n-input with c-input-text
Diffstat (limited to 'src/tools/json-diff/json-diff.vue')
-rw-r--r--src/tools/json-diff/json-diff.vue8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tools/json-diff/json-diff.vue b/src/tools/json-diff/json-diff.vue
index df106c6..0db06cc 100644
--- a/src/tools/json-diff/json-diff.vue
+++ b/src/tools/json-diff/json-diff.vue
@@ -1,5 +1,5 @@
<template>
- <n-form-item label="Your first json" v-bind="leftJsonValidation.attrs">
+ <n-form-item label="Your first json" v-bind="leftJsonValidation.attrs as any">
<n-input
v-model:value="rawLeftJson"
placeholder="Paste your first json here..."
@@ -9,10 +9,10 @@
autocorrect="off"
autocapitalize="off"
spellcheck="false"
- :input-props="{ 'data-test-id': 'leftJson' }"
+ :input-props="{ 'data-test-id': 'leftJson' } as any"
/>
</n-form-item>
- <n-form-item label="Your json to compare" v-bind="rightJsonValidation.attrs">
+ <n-form-item label="Your json to compare" v-bind="rightJsonValidation.attrs as any">
<n-input
v-model:value="rawRightJson"
placeholder="Paste your json to compare here..."
@@ -22,7 +22,7 @@
autocorrect="off"
autocapitalize="off"
spellcheck="false"
- :input-props="{ 'data-test-id': 'rightJson' }"
+ :input-props="{ 'data-test-id': 'rightJson' } as any"
/>
</n-form-item>