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/esm/index.js
CHANGED
|
@@ -2859,7 +2859,7 @@ const LogReviewer = (props) => {
|
|
|
2859
2859
|
let month = newDateFilterState.startDate.month;
|
|
2860
2860
|
while (
|
|
2861
2861
|
// Earlier year
|
|
2862
|
-
(year
|
|
2862
|
+
(year < newDateFilterState.endDate.year)
|
|
2863
2863
|
// Current year but included month
|
|
2864
2864
|
|| (year === newDateFilterState.endDate.year
|
|
2865
2865
|
&& month <= newDateFilterState.endDate.month)) {
|