From 16559e83f5d3cac689f71fb951da41b9bd1bd184 Mon Sep 17 00:00:00 2001 From: jonaswinkler Date: Mon, 4 Jan 2021 15:58:04 +0100 Subject: [PATCH] bugfix --- src-ui/src/app/services/document-list-view.service.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src-ui/src/app/services/document-list-view.service.ts b/src-ui/src/app/services/document-list-view.service.ts index eb69439ec..a9b7d5419 100644 --- a/src-ui/src/app/services/document-list-view.service.ts +++ b/src-ui/src/app/services/document-list-view.service.ts @@ -152,6 +152,13 @@ export class DocumentListViewService { return this.view.sort_reverse } + setSort(field: string, reverse: boolean) { + this.view.sort_field = field + this.view.sort_reverse = reverse + this.saveDocumentListView() + this.reload() + } + private saveDocumentListView() { sessionStorage.setItem(DOCUMENT_LIST_SERVICE.CURRENT_VIEW_CONFIG, JSON.stringify(this.documentListView)) } @@ -259,7 +266,7 @@ export class DocumentListViewService { this.documentListView = null } } - if (!this.documentListView || !this.documentListView.filter_rules || !this.documentListView.sort_reverse || !this.documentListView.sort_field) { + if (!this.documentListView || this.documentListView.filter_rules == null || this.documentListView.sort_reverse == null || this.documentListView.sort_field == null) { this.documentListView = { filter_rules: [], sort_reverse: true,