dce-reactkit 3.2.2-beta.5 → 3.2.2-beta.6
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
|
@@ -1463,7 +1463,7 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1463
1463
|
// > Perform filters
|
|
1464
1464
|
const logs: Log[] = [];
|
|
1465
1465
|
Object.keys(logMap).forEach((year) => {
|
|
1466
|
-
Object.keys(logMap).forEach((month) => {
|
|
1466
|
+
Object.keys(logMap[year]).forEach((month) => {
|
|
1467
1467
|
logMap[year][month].forEach((log) => {
|
|
1468
1468
|
/* ----------- Date Filter ---------- */
|
|
1469
1469
|
|