We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bd005d commit c158177Copy full SHA for c158177
src/app/app.component.ts
@@ -48,13 +48,17 @@ export class AppComponent implements OnInit {
48
49
selectGenre(i: number) {
50
this.selectedGenreIndex = i;
51
- this.router.navigate([this.musicGenres[this.selectedGenreIndex].subGenres[0].link]).then(() => {
52
- });
+ this.router.navigate([this.musicGenres[this.selectedGenreIndex].subGenres[0].link]).then(
+ () => {},
53
54
+ );
55
}
56
57
selectSubGenre(i: number) {
58
this.selectedSubGenreIndex = i;
- this.router.navigate([this.musicGenres[this.selectedGenreIndex].subGenres[this.selectedSubGenreIndex].link]).then(() => {
59
+ this.router.navigate([this.musicGenres[this.selectedGenreIndex].subGenres[this.selectedSubGenreIndex].link]).then(
60
61
62
63
64
0 commit comments