From f795cd359d0d59406f624794b7e754d0195d2c15 Mon Sep 17 00:00:00 2001 From: "Freddy R. Laffita Almaguer" Date: Tue, 30 Jan 2024 17:29:10 +0200 Subject: [PATCH] Fixing rule history filter condition for IRA --- .../shared/component/ira-history/ira-history.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/incident-response/shared/component/ira-history/ira-history.component.ts b/frontend/src/app/incident-response/shared/component/ira-history/ira-history.component.ts index 52bf70caa..2e09d7905 100644 --- a/frontend/src/app/incident-response/shared/component/ira-history/ira-history.component.ts +++ b/frontend/src/app/incident-response/shared/component/ira-history/ira-history.component.ts @@ -23,7 +23,7 @@ export class IraHistoryComponent implements OnInit { } getHistory() { - this.incidentResponseRuleHistoryService.query({page: 0, size: 1000, ' ruleId.equals': this.incidentRule.id, sort: 'createdDate,desc'}) + this.incidentResponseRuleHistoryService.query({page: 0, size: 1000, 'ruleId.equals': this.incidentRule.id, sort: 'createdDate,desc'}) .subscribe(response => { if (response.body) { this.incidentRulesHistory = response.body;