Skip to content

Commit

Permalink
fix: set filter as greater than including
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitij-k-osmosys committed Dec 5, 2024
1 parent a234a26 commit bb40f52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ export class NotificationsComponent implements OnInit {
field: 'createdOn',
operator: 'lt',
value: new Date(
new Date(this.selectedToDate).setDate(this.selectedToDate.getDate()),
new Date(this.selectedToDate).setDate(this.selectedToDate.getDate() + 1),
).toISOString(),
});
}
Expand Down

0 comments on commit bb40f52

Please sign in to comment.