filter artist
This commit is contained in:
@@ -5,8 +5,9 @@ export function filterSong(song: Song, filterValue: string): boolean {
|
||||
|
||||
const textMatch = !!song.text && normalize(song.text).indexOf(normalize(filterValue)) !== -1;
|
||||
const titleMatch = !!song.title && normalize(song.title).indexOf(normalize(filterValue)) !== -1;
|
||||
const artistMatch = !!song.title && normalize(song.artist).indexOf(normalize(filterValue)) !== -1;
|
||||
|
||||
return textMatch || titleMatch;
|
||||
return textMatch || titleMatch || artistMatch;
|
||||
}
|
||||
|
||||
function normalize(input: string): string {
|
||||
|
||||
Reference in New Issue
Block a user