filter expand fix

This commit is contained in:
Timo Bejan 2020-10-30 14:33:40 +02:00
parent 9f5e42f324
commit dd343bbef3

View File

@ -318,6 +318,7 @@ export class FilePreviewScreenComponent implements OnInit {
public setExpanded(key: string, value: boolean, $event: MouseEvent) {
$event.stopPropagation();
this.expandedFilters[key] = value;
this._changeDetectorRef.detectChanges();
}
@HostListener('window:keyup', ['$event'])