Explorar el Código

fix(AddEditStudentDialog): remove unnecessary whitespace in copyStudentDataToResponsible function

alvesantos hace 1 semana
padre
commit
45e54b1658
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3 3
      src/pages/students/components/AddEditStudentDialog.vue

+ 3 - 3
src/pages/students/components/AddEditStudentDialog.vue

@@ -1024,10 +1024,10 @@ const copyStudentDataToResponsible = () => {
   responsibleForm.value.address_number = form.value.address_number;
   responsibleForm.value.neighborhood = form.value.neighborhood;
   responsibleForm.value.complement = form.value.complement;
-  
+
   responsibleSelectedState.value = selectedState.value;
   responsibleSelectedCity.value = selectedCity.value;
-  
+
   // The watchers below will sync the actual IDs in the form
 };
 
@@ -1063,7 +1063,7 @@ watch(isStudentUnderage, (underage) => {
     form.value.payer = responsibleForm.value.name;
   } else {
     form.value.payer = form.value.name;
-    
+
     if (activeTab.value === "responsible") {
       activeTab.value = "student";
     }