From ac459b84c6f056cec992da27419909e0f0105e3c Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Wed, 6 Jan 2021 11:12:13 -0800 Subject: [PATCH] Same thing, wait for promise to return =/ --- .../app/components/document-list/document-list.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts index 50f61bfe5..72c499568 100644 --- a/src-ui/src/app/components/document-list/document-list.component.ts +++ b/src-ui/src/app/components/document-list/document-list.component.ts @@ -73,14 +73,14 @@ export class DocumentListComponent implements OnInit { } this.list.savedView = view this.list.reload() + this.rulesChanged() }) } else { this.list.savedView = null this.list.reload() + this.rulesChanged() } }) - - this.rulesChanged() } loadViewConfig(view: PaperlessSavedView) {