File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/components-vue/src/components/form Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<BaseErrorBoundary :theme =" theme" >
3
- <div class =" flx --flxColumn --flx-start --gap-5" >
3
+ <div v-if = " input.type !== eFT.HIDDEN " class =" flx --flxColumn --flx-start --gap-5" >
4
4
<FormInputOptions
5
5
v-if =" !input.defaults && input.type === eFT.CHOICE"
6
6
v-slot =" { options }"
27
27
/>
28
28
<!-- Future inner loop input -->
29
29
<FormInputLoop
30
- v-else-if = " input.type !== eFT.HIDDEN "
30
+ v-else
31
31
v-slot =" { i }"
32
32
:key =" input.options.length + models.length"
33
33
:models =" models"
Original file line number Diff line number Diff line change 22
22
>
23
23
<template v-for =" (input , inputIndex ) in model " :key =" inputIndex " >
24
24
<div
25
- v-if =" input && model[inputIndex]"
25
+ v-if =" input && model[inputIndex] && input.type !== eFormType.HIDDEN "
26
26
class =" flx --flxColumn --flx-start-stretch --gap-5"
27
27
>
28
28
<p v-if =" getSuggestedTitle(input)" class =" --txtSize-sm" >
You can’t perform that action at this time.
0 commit comments