rez_core 5.0.59 → 5.0.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "5.0.59",
3
+ "version": "5.0.60",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -977,7 +977,7 @@ export class FilterService {
977
977
 
978
978
  const dayBefore = (() => {
979
979
  const d = new Date();
980
- d.setDate(d.getDate() - (numVal + 1));
980
+ d.setDate(d.getDate() - (numVal));
981
981
 
982
982
  // Format as YYYY-MM-DD in IST
983
983
  return d.toLocaleDateString('en-CA', { timeZone: 'Asia/Kolkata' });