Remplacer les 'null' par des 'undefined'

master
Yanaël GRETTE 4 years ago
parent c4a57bf458
commit 3da51faa9d
  1. 2
      src/app/collaborateurs/collaborateurs.component.ts
  2. 4
      src/app/collaborateurs/details-collaborateur/details-collaborateur.component.html
  3. 4
      src/app/collaborateurs/details-collaborateur/details-collaborateur.component.ts
  4. 2
      src/app/home/home-assistante/home-assistante.component.ts
  5. 4
      src/app/referents/details-referent/details-referent.component.html
  6. 2
      src/app/referents/details-referent/details-referent.component.ts
  7. 2
      src/app/referents/referents.component.ts

@ -88,7 +88,7 @@ export class CollaborateursComponent implements OnInit {
}
ngOnDestroy() {
if(this.collaborateursDisponiblesSubscription != null) {
if(this.collaborateursDisponiblesSubscription != undefined) {
this.collaborateursDisponiblesSubscription.unsubscribe();
}
}

@ -1,11 +1,11 @@
<app-nav-menu></app-nav-menu>
<ng-container *ngIf="collaborateur!=null">
<ng-container *ngIf="collaborateur!=undefined">
<h2>{{ collaborateur.prenom }} {{ collaborateur.nom }} </h2>
<h3>Agence : {{ collaborateur.businessUnit.nom}}</h3>
<h3>Date embauche : {{ collaborateur.dateArrive}}</h3>
</ng-container>
<ng-container *ngIf="collaborateur==null || !eploaded">
<ng-container *ngIf="collaborateur==undefined || !eploaded">
<mat-spinner></mat-spinner>
</ng-container>

@ -76,10 +76,10 @@ export class DetailsCollaborateurComponent implements OnInit {
}
ngOnDestroy() {
if(this.epSubscription!= null) {
if(this.epSubscription!= undefined) {
this.epSubscription.unsubscribe();
}
if(this.collaborateurSubscription!= null) {
if(this.collaborateurSubscription!= undefined) {
this.collaborateurSubscription.unsubscribe();
}
}

@ -176,7 +176,7 @@ export class HomeAssistanteComponent implements OnInit, AfterViewInit {
* Détruire toutes les Subscriptions utilisées pour libérer de la mémoire après le changement de page.
*/
ngOnDestroy() {
if(this.epDisponiblesSubscription != null) {
if(this.epDisponiblesSubscription != undefined) {
this.epDisponiblesSubscription.unsubscribe();
}
}

@ -1,7 +1,7 @@
<app-nav-menu></app-nav-menu>
<ng-container *ngIf="referent!=null">
<ng-container *ngIf="referent!=undefined">
<h2> {{referent.prenom }} {{referent.nom }} ({{referent.businessUnit.nom }}) </h2>
</ng-container>
<ng-container *ngIf="referent==null">
<ng-container *ngIf="referent==undefined">
<mat-spinner></mat-spinner>
</ng-container>

@ -39,7 +39,7 @@ export class DetailsReferentComponent implements OnInit {
}
ngOnDestroy() {
if(this.referentSubscription!=null) {
if(this.referentSubscription!=undefined) {
this.referentSubscription.unsubscribe();
}
}

@ -73,7 +73,7 @@ export class ReferentsComponent implements OnInit {
}
ngOnDestroy() {
if(this.referentsDisponiblesSubscription != null) {
if(this.referentsDisponiblesSubscription != undefined) {
this.referentsDisponiblesSubscription.unsubscribe();
}
}

Loading…
Cancel
Save