@datarailsshared/datarailsshared 1.4.134 → 1.4.135

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.
@@ -4164,10 +4164,10 @@
4164
4164
  todayDate.subtract(1, 'days');
4165
4165
  return todayDate;
4166
4166
  case exports.DateTags.THIS_MONTH:
4167
- todayDate.month();
4167
+ todayDate.endOf('month');
4168
4168
  return todayDate;
4169
4169
  case exports.DateTags.PREV_MONTH:
4170
- todayDate.month();
4170
+ todayDate.endOf('month');
4171
4171
  todayDate.subtract(1, 'months');
4172
4172
  return todayDate;
4173
4173
  }