mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
rxjs compatibility
This commit is contained in:
parent
cae4d3fae3
commit
7c2ae129d7
@ -143,8 +143,8 @@ export class DocumentListViewService {
|
||||
activeListViewState.sortReverse,
|
||||
activeListViewState.filterRules
|
||||
)
|
||||
.subscribe(
|
||||
(result) => {
|
||||
.subscribe({
|
||||
next: (result) => {
|
||||
this.isReloading = false
|
||||
activeListViewState.collectionSize = result.count
|
||||
activeListViewState.documents = result.results
|
||||
@ -153,7 +153,7 @@ export class DocumentListViewService {
|
||||
}
|
||||
this.rangeSelectionAnchorIndex = this.lastRangeSelectionToIndex = null
|
||||
},
|
||||
(error) => {
|
||||
error: (error) => {
|
||||
this.isReloading = false
|
||||
if (activeListViewState.currentPage != 1 && error.status == 404) {
|
||||
// this happens when applying a filter: the current page might not be available anymore due to the reduced result set.
|
||||
@ -162,8 +162,8 @@ export class DocumentListViewService {
|
||||
} else {
|
||||
this.error = error.error
|
||||
}
|
||||
}
|
||||
)
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
set filterRules(filterRules: FilterRule[]) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user