diff options
Diffstat (limited to 'src/tools/jwt-parser/jwt-parser.vue')
-rw-r--r-- | src/tools/jwt-parser/jwt-parser.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/tools/jwt-parser/jwt-parser.vue b/src/tools/jwt-parser/jwt-parser.vue index ee6e0f3..d5b1168 100644 --- a/src/tools/jwt-parser/jwt-parser.vue +++ b/src/tools/jwt-parser/jwt-parser.vue @@ -30,9 +30,7 @@ const validation = useValidation({ <template> <c-card> - <n-form-item label="JWT to decode" :feedback="validation.message" :validation-status="validation.status"> - <n-input v-model:value="rawJwt" type="textarea" placeholder="Put your token here..." rows="5" /> - </n-form-item> + <c-input-text v-model:value="rawJwt" label="JWT to decode" :validation="validation" placeholder="Put your token here..." rows="5" multiline raw-text autofocus mb-3 /> <n-table v-if="validation.isValid"> <tbody> |