iptdevs-design-system 3.1.93 → 3.1.94
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/cod/modal-referred/modal-referred.component.mjs +3 -1
- package/fesm2015/iptdevs-design-system.mjs +2 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4089,6 +4089,7 @@ class ModalReferredComponent {
|
|
|
4089
4089
|
this.userService.getStudent(request).subscribe((response) => {
|
|
4090
4090
|
console.log(response.data);
|
|
4091
4091
|
if (response.data == null) {
|
|
4092
|
+
this.userExists = false;
|
|
4092
4093
|
Swal.fire({
|
|
4093
4094
|
title: 'Oops...',
|
|
4094
4095
|
text: 'No hay usuarios con los parámetros ingresados',
|
|
@@ -4096,6 +4097,7 @@ class ModalReferredComponent {
|
|
|
4096
4097
|
});
|
|
4097
4098
|
}
|
|
4098
4099
|
else {
|
|
4100
|
+
this.userExists = true;
|
|
4099
4101
|
this.allUsers = response.data;
|
|
4100
4102
|
console.log(response.data);
|
|
4101
4103
|
}
|