fix: hide prop doc check & form
This commit is contained in:
parent
18a533de34
commit
97e76d952b
2 changed files with 12 additions and 2 deletions
|
|
@ -536,7 +536,14 @@ watch(
|
|||
</div>
|
||||
|
||||
<!-- type -->
|
||||
<div class="col-md col-12">
|
||||
<div
|
||||
v-if="
|
||||
prop.fieldName === 'documentCheck' ||
|
||||
prop.fieldName === 'designForm'
|
||||
"
|
||||
class="col-md col-12"
|
||||
></div>
|
||||
<div v-else class="col-md col-12">
|
||||
<q-select
|
||||
dense
|
||||
outlined
|
||||
|
|
|
|||
|
|
@ -128,7 +128,10 @@ defineEmits<{
|
|||
<main class="q-px-md q-py-sm" :class="{ row: $q.screen.gt.sm }">
|
||||
<section class="col-7" :class="{ 'q-pr-sm': $q.screen.gt.sm }">
|
||||
<span
|
||||
v-for="(prop, i) in propertiesToShow"
|
||||
v-for="(prop, i) in propertiesToShow.filter(
|
||||
(v) =>
|
||||
v.fieldName !== 'documentCheck' && v.fieldName !== 'designForm',
|
||||
)"
|
||||
:key="i"
|
||||
class="row items-center q-pb-sm"
|
||||
>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue