dce-reactkit 3.2.2-beta.11 → 3.2.2-beta.12

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/dist/cjs/index.js CHANGED
@@ -2867,7 +2867,7 @@ const LogReviewer = (props) => {
2867
2867
  let month = newDateFilterState.startDate.month;
2868
2868
  while (
2869
2869
  // Earlier year
2870
- (year <= newDateFilterState.endDate.year)
2870
+ (year < newDateFilterState.endDate.year)
2871
2871
  // Current year but included month
2872
2872
  || (year === newDateFilterState.endDate.year
2873
2873
  && month <= newDateFilterState.endDate.month)) {