fix: refs #8363 ended v-model
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Jon Elias 2025-04-04 10:11:39 +02:00
parent 5af6b60a4a
commit 5e999e0fb1
1 changed files with 1 additions and 3 deletions

View File

@ -348,7 +348,6 @@ watch(
</template>
<template #column-create-started="{ data }">
<VnInputDate
placeholder="dd-mm-aaa"
:label="t('item.fixedPrice.started')"
v-model="data.started"
:required="true"
@ -356,9 +355,8 @@ watch(
</template>
<template #column-create-ended="{ data }">
<VnInputDate
placeholder="dd-mm-aaa"
:label="t('item.fixedPrice.ended')"
v-model="data.landed"
v-model="data.ended"
:required="true"
/>
</template>