diff --git a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/DataForm.vue b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/DataForm.vue index a4985e8..185e181 100644 --- a/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/DataForm.vue +++ b/src/pages/newMedicalCard/components/InitialInspectionProtocol/Forms/DataForm.vue @@ -188,7 +188,10 @@ export default { fillInspection: { immediate: true, handler(newVal) { - if (newVal) this.change = false; + if (newVal) { + this.change = false; + this.data.results.files.forEach((e) => (e.data = [])); + } }, }, }, @@ -201,6 +204,11 @@ export default {