Update document-list-view.service.ts

This commit is contained in:
shamoon 2025-02-15 21:33:26 -08:00 committed by GitHub
parent cc7083b1d8
commit ee2580c5f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -307,17 +307,11 @@ export class DocumentListViewService {
activeListViewState.currentPage = 1
this.reload()
} else if (
activeListViewState.sortField.indexOf('custom_field') === 0
) {
const field = this.settings.allDisplayFields.find(
activeListViewState.sortField.indexOf('custom_field') === 0 && this.settings.allDisplayFields.find(
(f) => f.id === activeListViewState.sortField
)
if (!field) {
) === undefined) {
// e.g. field was deleted
this.sortField = 'created'
} else {
this.error = error.error
}
} else {
this.selectionData = null
let errorMessage