Validacion fecha para modifcacion perfil
This commit is contained in:
parent
48a894c455
commit
ab65108475
|
@ -390,6 +390,7 @@
|
|||
|
||||
<div class="row">
|
||||
<button
|
||||
*ngIf="!isGoogle"
|
||||
type="button"
|
||||
id="cancel-save"
|
||||
data-cy="entityCreateCancelButton"
|
||||
|
@ -400,6 +401,7 @@
|
|||
</button>
|
||||
|
||||
<button
|
||||
*ngIf="!isGoogle"
|
||||
type="submit"
|
||||
id="save-entity"
|
||||
data-cy="entityCreateSaveButton"
|
||||
|
|
|
@ -6,7 +6,7 @@ import { Observable } from 'rxjs';
|
|||
import { finalize, map } from 'rxjs/operators';
|
||||
|
||||
import * as dayjs from 'dayjs';
|
||||
import { DATE_TIME_FORMAT } from 'app/config/input.constants';
|
||||
import { DATE_FORMAT, DATE_TIME_FORMAT } from 'app/config/input.constants';
|
||||
import { IUser } from 'app/entities/user/user.model';
|
||||
import { UserService } from 'app/entities/user/user.service';
|
||||
import { IPlantilla } from 'app/entities/plantilla/plantilla.model';
|
||||
|
@ -183,7 +183,7 @@ export class SettingsComponent implements OnInit {
|
|||
id: usuarioExtra.id,
|
||||
nombre: usuarioExtra.nombre,
|
||||
iconoPerfil: usuarioExtra.iconoPerfil,
|
||||
fechaNacimiento: usuarioExtra.fechaNacimiento ? usuarioExtra.fechaNacimiento.format(DATE_TIME_FORMAT) : null,
|
||||
fechaNacimiento: usuarioExtra.fechaNacimiento ? usuarioExtra.fechaNacimiento.format(DATE_FORMAT) : null,
|
||||
estado: usuarioExtra.estado,
|
||||
user: usuarioExtra.user,
|
||||
plantillas: usuarioExtra.plantillas,
|
||||
|
@ -229,7 +229,7 @@ export class SettingsComponent implements OnInit {
|
|||
nombre: this.editForm.get(['nombre'])!.value,
|
||||
iconoPerfil: this.profileIcon,
|
||||
fechaNacimiento: this.editForm.get(['fechaNacimiento'])!.value
|
||||
? dayjs(this.editForm.get(['fechaNacimiento'])!.value, DATE_TIME_FORMAT)
|
||||
? dayjs(this.editForm.get(['fechaNacimiento'])!.value, DATE_FORMAT)
|
||||
: undefined,
|
||||
estado: this.editForm.get(['estado'])!.value,
|
||||
user: this.editForm.get(['user'])!.value,
|
||||
|
|
Loading…
Reference in New Issue