refactor: refs #6683 remove search function calls from property filter inputs
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
0ea9381287
commit
36fa2c72e0
|
@ -57,7 +57,6 @@ const props = defineProps({
|
|||
v-model="params.propertyGroupFk"
|
||||
option-value="id"
|
||||
option-label="description"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="propertyGroupSelect"
|
||||
|
@ -72,7 +71,6 @@ const props = defineProps({
|
|||
v-model="params.supplierFk"
|
||||
option-value="id"
|
||||
option-label="name"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="notarySelect"
|
||||
|
@ -109,7 +107,6 @@ const props = defineProps({
|
|||
v-model="params.companyFk"
|
||||
option-value="id"
|
||||
option-label="code"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="ownerSelect"
|
||||
|
@ -121,7 +118,6 @@ const props = defineProps({
|
|||
<VnInputDate
|
||||
v-model="params.purchased"
|
||||
:label="t('property.purchased')"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="purchasedDateInput"
|
||||
|
@ -131,7 +127,6 @@ const props = defineProps({
|
|||
<VnInputDate
|
||||
v-model="params.booked"
|
||||
:label="t('property.booked')"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="bookedDateInput"
|
||||
|
@ -143,7 +138,6 @@ const props = defineProps({
|
|||
<VnCheckbox
|
||||
v-model="params.hasFormalization"
|
||||
:label="t('property.hasFormalization')"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="hasFormalizationCheckbox"
|
||||
|
@ -155,7 +149,6 @@ const props = defineProps({
|
|||
<VnCheckbox
|
||||
v-model="params.hasSimpleCopy"
|
||||
:label="t('property.hasSimpleCopy')"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="hasSimpleCopyCheckbox"
|
||||
|
@ -167,7 +160,6 @@ const props = defineProps({
|
|||
<VnCheckbox
|
||||
v-model="params.hasOriginalPropertyDeed"
|
||||
:label="t('property.hasOriginalPropertyDeed')"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="hasOriginalPropertyDeedCheckbox"
|
||||
|
@ -179,7 +171,6 @@ const props = defineProps({
|
|||
<VnCheckbox
|
||||
v-model="params.hasFundProvision"
|
||||
:label="t('property.hasFundProvision')"
|
||||
@update:model-value="searchFn()"
|
||||
dense
|
||||
filled
|
||||
data-cy="hasFundProvisionCheckbox"
|
||||
|
|
Loading…
Reference in New Issue