浏览代码

Bug fix in stories

master
kj1352 4 年前
父节点
当前提交
61949ac00b
共有 2 个文件被更改,包括 2 次插入2 次删除
  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 查看文件

@@ -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 查看文件

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



正在加载...
取消
保存