the value of description and name should be considered as an input

This commit is contained in:
Sevan Nerse 2021-01-03 18:04:06 +03:00
parent b9b2082adf
commit e264881773

View File

@ -44,7 +44,7 @@
required="required" required="required"
data-item="name" data-item="name"
v-model="row.name" v-model="row.name"
@input="onCalculateTotal" @input="onBindingItemField(index, 'name')"
@change="form.errors.clear('items.' + index + '.name')"> @change="form.errors.clear('items.' + index + '.name')">
<div class="invalid-feedback d-block" <div class="invalid-feedback d-block"
@ -68,6 +68,7 @@
v-model="row.description" v-model="row.description"
data-item="description" data-item="description"
resize="none" resize="none"
@input="onBindingItemField(index, 'description')"
></textarea> ></textarea>
</td> </td>
@endif @endif