diff options
author | 2023-05-14 21:26:18 +0200 | |
---|---|---|
committer | 2023-05-14 22:30:23 +0200 | |
commit | 77f2efc0b92847c3b1198446f4b520ecb2263164 (patch) | |
tree | 942ea5ffd922dbe7a9913e235a4fae17b117c925 /src/components/FormatTransformer.vue | |
parent | aad8d84e13ce31c1b7c1cbb930fb8bd4c0abe13a (diff) | |
download | it-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/components/FormatTransformer.vue')
-rw-r--r-- | src/components/FormatTransformer.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/FormatTransformer.vue b/src/components/FormatTransformer.vue index dea5d56..d187632 100644 --- a/src/components/FormatTransformer.vue +++ b/src/components/FormatTransformer.vue @@ -1,5 +1,5 @@ <template> - <n-form-item :label="inputLabel" v-bind="validationAttrs"> + <n-form-item :label="inputLabel" v-bind="validationAttrs as any"> <n-input ref="inputElement" v-model:value="input" @@ -10,7 +10,7 @@ autocorrect="off" autocapitalize="off" spellcheck="false" - :input-props="{ 'data-test-id': 'input' }" + :input-props="{ 'data-test-id': 'input' } as any" /> </n-form-item> <n-form-item :label="outputLabel"> |