Added better invalid character replacements

This commit is contained in:
Geomitron
2020-05-27 15:19:34 -04:00
parent 323a9116e3
commit 5314d9a7c3
6 changed files with 26 additions and 10 deletions

View File

@@ -11,7 +11,7 @@ export class SearchService {
private resultsChangedEmitter = new EventEmitter<SongResult[]>() // For when any results change
private newResultsEmitter = new EventEmitter<SongResult[]>() // For when a new search happens
private results: SongResult[] = []
private awaitingResults = false // TODO: add loading icon below table when this is true
private awaitingResults = false
private currentQuery: SongSearch
private _allResultsVisible = true