Move list reload after network action completes

This commit is contained in:
Michael Shamoon 2021-01-06 07:30:53 -08:00
parent 7e36986a26
commit 507085ee7b

View File

@ -108,12 +108,13 @@ export class DocumentListComponent implements OnInit {
if (this.list.savedViewId) {
this.savedViewService.getCached(this.list.savedViewId).subscribe(viewUntouched => {
this.list.filterRules = viewUntouched.filter_rules
this.list.reload()
})
} else {
this.list.filterRules = []
}
this.list.reload()
}
}
get filterRulesModified(): boolean {
if (this.list.savedView == null) {