Skip to content

Commit

Permalink
Merge pull request #565 from Madhuravas/develop
Browse files Browse the repository at this point in the history
added missed parameter
  • Loading branch information
aranaravi authored Nov 1, 2023
2 parents da11069 + c602e5e commit 0d53fee
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,10 +375,10 @@ export class ViewhistoryComponent implements OnInit, OnDestroy {
let searchParam = "",
self = this;
if(pageEvent.pageIndex > this.pageIndex) {
this.auditService.audit('RP-011', 'View history', 'RP-View history', 'View history', 'User clicks on next page in pagination');
this.auditService.audit('RP-011', 'View history', 'RP-View history', 'View history', 'User clicks on next page in pagination', '');
}
if(pageEvent.pageSize != this.pageSize){
this.auditService.audit('RP-012', 'View history', 'RP-View history', 'View history', 'User chooses the number of items to be shown on each page from drop-down');
this.auditService.audit('RP-012', 'View history', 'RP-View history', 'View history', 'User chooses the number of items to be shown on each page from drop-down', '');
}
this.controlTypes.forEach(controlType => {
if (self[controlType]) {
Expand Down

0 comments on commit 0d53fee

Please sign in to comment.