diff --git a/src/frontend/app/history/history.component.ts b/src/frontend/app/history/history.component.ts index 986e8343e7629f3d4d496215abfa1ecd36f12176..f4e216d6283df1263374409cb3a1bf0373a5b2f5 100644 --- a/src/frontend/app/history/history.component.ts +++ b/src/frontend/app/history/history.component.ts @@ -101,8 +101,6 @@ export class HistoryComponent implements OnInit { } initHistoryMode() { - this.resetFilter(); - if (this.fullHistoryMode) { this.extraParamUrl = this.resId !== null ? `&resId=${this.resId}` : ''; this.filterListUrl = this.resId !== null ? `../rest/history/availableFilters?resId=${this.resId}` : '../rest/history/availableFilters'; @@ -165,8 +163,6 @@ export class HistoryComponent implements OnInit { if (this.filterList === null) { this.filterList = {}; - this.filterUsed = {}; - this.filterUrl = ''; this.loadingFilters = true; this.http.get(this.filterListUrl).pipe( map((data: any) => {