Skip to content

Commit f3704de

Browse files
authored
Fixing rule history filter condition for IRA (#388)
1 parent d03220c commit f3704de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/app/incident-response/shared/component/ira-history/ira-history.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class IraHistoryComponent implements OnInit {
2323
}
2424

2525
getHistory() {
26-
this.incidentResponseRuleHistoryService.query({page: 0, size: 1000, ' ruleId.equals': this.incidentRule.id, sort: 'createdDate,desc'})
26+
this.incidentResponseRuleHistoryService.query({page: 0, size: 1000, 'ruleId.equals': this.incidentRule.id, sort: 'createdDate,desc'})
2727
.subscribe(response => {
2828
if (response.body) {
2929
this.incidentRulesHistory = response.body;

0 commit comments

Comments
 (0)