Skip to content

Commit

Permalink
🐛 Restore missing params object when fetching issuereports (#1393)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
mturley authored Sep 22, 2023
1 parent 48dd6fd commit 70c029b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/app/api/rest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,8 @@ export const getIssueReports = (
ANALYSIS_REPORT_APP_ISSUES.replace(
"/:applicationId/",
`/${String(applicationId)}/`
)
),
params
);

export const getIssues = (params: HubRequestParams = {}) =>
Expand Down

0 comments on commit 70c029b

Please sign in to comment.