From 70c029bd48ee7abf0fdb44b35336ed26cda1272e Mon Sep 17 00:00:00 2001 From: Mike Turley Date: Fri, 22 Sep 2023 15:28:18 -0400 Subject: [PATCH] :bug: Restore missing params object when fetching issuereports (#1393) Fixes a bug @ibolton336 found where filters weren't working on the Single Application tab of the Issues page. Looks like this param was removed in #1077 Signed-off-by: Mike Turley --- client/src/app/api/rest.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/src/app/api/rest.ts b/client/src/app/api/rest.ts index e9b06be9e9..701d558452 100644 --- a/client/src/app/api/rest.ts +++ b/client/src/app/api/rest.ts @@ -515,7 +515,8 @@ export const getIssueReports = ( ANALYSIS_REPORT_APP_ISSUES.replace( "/:applicationId/", `/${String(applicationId)}/` - ) + ), + params ); export const getIssues = (params: HubRequestParams = {}) =>