Fix: Deactivate button if movieIsUploaded is false

This commit is contained in:
Chneemann 2024-09-06 20:42:52 +02:00
parent cf2eae1752
commit 46686bb0da

View file

@ -37,9 +37,9 @@ export class HeroBannerComponent implements OnChanges {
environmentBaseUrl: string = environment.baseUrl;
movieIsUploaded: { [resolution: string]: boolean } = {
'320': false,
'720': false,
'1080': false,
'320': true,
'720': true,
'1080': true,
};
constructor(
private movieService: MovieService,