add get property to know if a version is currently downloading

This commit is contained in:
MathieuG-P
2022-06-19 21:58:40 +02:00
parent 4020473f9d
commit c8ee388f0d
@@ -77,4 +77,8 @@ export class BsDownloaderService{
this.currentBsVersionDownload$.next(bsVersion);
}
public get isDownloading(): boolean{
return !!this.currentBsVersionDownload$.value || !!this.downloadProgress$.value;
}
}