Sfoglia il codice sorgente

Bug fix in stories

master
kj1352 4 anni fa
parent
commit
61949ac00b
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  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 Vedi File

@@ -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 Vedi File

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



Caricamento…
Annulla
Salva