mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Move list reload after network action completes
This commit is contained in:
parent
7e36986a26
commit
507085ee7b
@ -108,11 +108,12 @@ export class DocumentListComponent implements OnInit {
|
|||||||
if (this.list.savedViewId) {
|
if (this.list.savedViewId) {
|
||||||
this.savedViewService.getCached(this.list.savedViewId).subscribe(viewUntouched => {
|
this.savedViewService.getCached(this.list.savedViewId).subscribe(viewUntouched => {
|
||||||
this.list.filterRules = viewUntouched.filter_rules
|
this.list.filterRules = viewUntouched.filter_rules
|
||||||
|
this.list.reload()
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
this.list.filterRules = []
|
this.list.filterRules = []
|
||||||
|
this.list.reload()
|
||||||
}
|
}
|
||||||
this.list.reload()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get filterRulesModified(): boolean {
|
get filterRulesModified(): boolean {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user