bug fixed

This commit is contained in:
병준 박 2019-11-05 14:11:08 +09:00
parent fd4561f965
commit f382696838

View File

@ -90,9 +90,11 @@ export class FileUploadQueueComponent implements OnInit, AfterViewInit {
private changeStyleDisplay(show: boolean): void {
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 {
this.elementRef.nativeElement.style.display = 'none';
this.elementRef.nativeElement.parentElement.style.display = 'none';
// this.elementRef.nativeElement.style.display = 'none';
}
}