From 52a7d5029a38bbd949b9c72d8a7b526aacc68cc8 Mon Sep 17 00:00:00 2001 From: Mike Turley Date: Fri, 22 Sep 2023 15:17:30 -0400 Subject: [PATCH] :bug: Restore missing filters param when fetching issuereports 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 = {}) =>