Fix: Deactivate button if movieIsUploaded is false
This commit is contained in:
parent
cf2eae1752
commit
46686bb0da
1 changed files with 3 additions and 3 deletions
|
|
@ -37,9 +37,9 @@ export class HeroBannerComponent implements OnChanges {
|
||||||
|
|
||||||
environmentBaseUrl: string = environment.baseUrl;
|
environmentBaseUrl: string = environment.baseUrl;
|
||||||
movieIsUploaded: { [resolution: string]: boolean } = {
|
movieIsUploaded: { [resolution: string]: boolean } = {
|
||||||
'320': false,
|
'320': true,
|
||||||
'720': false,
|
'720': true,
|
||||||
'1080': false,
|
'1080': true,
|
||||||
};
|
};
|
||||||
constructor(
|
constructor(
|
||||||
private movieService: MovieService,
|
private movieService: MovieService,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue