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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dce-reactkit",
3
- "version": "3.2.2-beta.11",
3
+ "version": "3.2.2-beta.12",
4
4
  "description": "Shared components for Harvard DCE apps",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -622,7 +622,7 @@ const LogReviewer: React.FC<Props> = (props) => {
622
622
  let month = newDateFilterState.startDate.month;
623
623
  while (
624
624
  // Earlier year
625
- (year <= newDateFilterState.endDate.year)
625
+ (year < newDateFilterState.endDate.year)
626
626
  // Current year but included month
627
627
  || (
628
628
  year === newDateFilterState.endDate.year