Skip to content

Commit

Permalink
test (#14)
Browse files Browse the repository at this point in the history
Co-authored-by: Baptiste LYET <[email protected]>
  • Loading branch information
Babali42 and Baptiste LYET authored Feb 28, 2024
1 parent 195c32c commit a07c4c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<div class="flex column left-menu" *ngIf="!isMobileDisplay">
<div class="header"> DRUMS<br> PATTERN<br> LIBRARY</div>
<div class="flex menu genre mt-40">
<h2>1 - Choisir un genre</h2>
<h2>Genre</h2>
<div class="button pointer" *ngFor="let genre of musicGenres; let i = index;" (click)="selectGenre(i)"
[ngClass]="{'selected':i==selectedGenreIndex}">{{ genre.label }}
</div>
</div>
<div class="flex menu mt-40">
<h2>2 - Choisir un sous-genre</h2>
<h2>Sous-genre</h2>
<div class="button pointer" *ngFor="let subgenre of musicGenres[selectedGenreIndex].subGenres; let i = index;"
(click)="selectSubGenre(i)" [ngClass]="{'selected':i==selectedSubGenreIndex}">{{ subgenre.label }}
</div>
Expand Down

0 comments on commit a07c4c1

Please sign in to comment.