From ce32089cc4008f9768e17fca69b52bac88b4789e Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 7 May 2022 00:08:34 -0700 Subject: [PATCH] fix back button double history bug --- src-ui/src/app/services/query-params.service.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src-ui/src/app/services/query-params.service.ts b/src-ui/src/app/services/query-params.service.ts index 92346ff00..1528dca57 100644 --- a/src-ui/src/app/services/query-params.service.ts +++ b/src-ui/src/app/services/query-params.service.ts @@ -74,8 +74,12 @@ export class QueryParamsService { ) { // this is navigating to /documents so we need to update the params from the list this.updateFilterRules(this.list.filterRules, false) - this.sortField = this.list.sortField - this.sortReverse = this.list.sortReverse + this.sortParams[SORT_FIELD_PARAMETER] = this.list.sortField + this.sortParams[SORT_REVERSE_PARAMETER] = this.list.sortReverse + this.router.navigate([], { + queryParams: this.params, + replaceUrl: true, + }) } }