bug fixed
This commit is contained in:
parent
fd4561f965
commit
f382696838
|
@ -90,9 +90,11 @@ export class FileUploadQueueComponent implements OnInit, AfterViewInit {
|
||||||
|
|
||||||
private changeStyleDisplay(show: boolean): void {
|
private changeStyleDisplay(show: boolean): void {
|
||||||
if (show || (!!this.fileUploadItems && 0 < this.fileUploadItems.length)) {
|
if (show || (!!this.fileUploadItems && 0 < this.fileUploadItems.length)) {
|
||||||
this.elementRef.nativeElement.style.display = '';
|
this.elementRef.nativeElement.parentElement.style.display = '';
|
||||||
|
// this.elementRef.nativeElement.style.display = '';
|
||||||
} else {
|
} else {
|
||||||
this.elementRef.nativeElement.style.display = 'none';
|
this.elementRef.nativeElement.parentElement.style.display = 'none';
|
||||||
|
// this.elementRef.nativeElement.style.display = 'none';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user