From dd343bbef37a5a111d1b27a00a0e0e6b5cdd2aa1 Mon Sep 17 00:00:00 2001 From: Timo Bejan Date: Fri, 30 Oct 2020 14:33:40 +0200 Subject: [PATCH] filter expand fix --- .../file/file-preview-screen/file-preview-screen.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts index 0e0c96f73..95a99ca8a 100644 --- a/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts +++ b/apps/red-ui/src/app/screens/file/file-preview-screen/file-preview-screen.component.ts @@ -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'])