Clarified result count

This commit is contained in:
Geomitron
2020-03-12 10:54:33 -04:00
parent a64ec34589
commit f1d58aafa8
3 changed files with 15 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ export class StatusBarComponent {
constructor(
private electronService: ElectronService,
private downloadService: DownloadService,
searchService: SearchService,
private searchService: SearchService,
ref: ChangeDetectorRef
) {
downloadService.onDownloadUpdated(() => {
@@ -43,6 +43,10 @@ export class StatusBarComponent {
})
}
get allResultsVisible() {
return this.searchService.allResultsVisible
}
showDownloads() {
$('#downloadsModal').modal('show')
}