From aca0de0fc1cdb2f536ec5719f2eb9f1d0814e278 Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Thu, 11 May 2023 10:56:45 +0300 Subject: [PATCH] search page: delete 'active' param --- searchPages/find/searchAll.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/searchPages/find/searchAll.component.ts b/searchPages/find/searchAll.component.ts index 5d8ec1c6..5cbbd21d 100644 --- a/searchPages/find/searchAll.component.ts +++ b/searchPages/find/searchAll.component.ts @@ -217,6 +217,7 @@ export class SearchAllComponent { let active = null; if (queryParams["active"] && queryParams["active"].length > 0) { active = ((["result","projects","organizations","datasources","services"]).indexOf(queryParams["active"])!= -1)?queryParams["active"]:null; + delete this.parameters['active']; } this.subs.push(this.route.params.subscribe(params => { if(this.activeEntity == null && (!params["entity"] || params["entity"].length == 0)){