Created
October 9, 2020 02:40
-
-
Save bacoords/18b45243b19690def6fee3c3fcf14b7a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ion-list *ngIf="(videoCategories$ | async) as categories" class="ion-padding-start"> | |
<ion-item (click)="getSelectedCategoryVideos('2380')"> | |
Therapeutic Breakout Sessions | |
</ion-item> | |
<ion-item (click)="getSelectedCategoryVideos('2374')"> | |
Online Breakout Sessions | |
</ion-item> | |
<ion-item *ngFor="let category of categories" (click)="getSelectedCategoryVideos(category.id)"> | |
{{ category.name }} | |
</ion-item> | |
<ion-item (click)="getSelectedCategoryVideos('6')"> | |
Foundation Interviews | |
</ion-item> | |
<ion-item (click)="getSelectedCategoryVideos('16')"> | |
Public Awareness & Patient Stories | |
</ion-item> | |
<ion-item (click)="getSelectedCategoryVideos('15')"> | |
Questions About NMO | |
</ion-item> | |
</ion-list> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment