Explorar el Código

Bug fix in stories

master
kj1352 hace 4 años
padre
commit
61949ac00b
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. +1
    -1
      src/app/fan-zone/fan-zone.page.html
  2. +1
    -1
      src/app/fan-zone/fan-zone.page.ts

+ 1
- 1
src/app/fan-zone/fan-zone.page.html Ver fichero

@@ -30,7 +30,7 @@
<ion-icon name="add-circle-outline"></ion-icon>
<span> Add Story </span>
</li>
<li *ngFor="let story of reversed(fanStories); let i = index" [ngClass]="{'inactive' : story.opened }"
<li *ngFor="let story of fanStories; let i = index" [ngClass]="{'inactive' : story.opened }"
(click)="showSlides = true; story.opened = true; goToSlide(i)">
<img [src]="story.profileImage">
<span> {{ story.name }} </span>


+ 1
- 1
src/app/fan-zone/fan-zone.page.ts Ver fichero

@@ -94,7 +94,7 @@ export class FanZonePage implements OnInit {
this.showSocialLogin = false;
} else {
this.googleUserData = {};
this.showSocialLogin = true;
this.showSocialLogin = false;
}
}



Cargando…
Cancelar
Guardar