dce-reactkit 3.2.2-beta.27 → 3.2.2-beta.28
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
|
@@ -1637,7 +1637,10 @@ const LogReviewer: React.FC<Props> = (props) => {
|
|
|
1637
1637
|
contextFilterState[log.context] === false
|
|
1638
1638
|
// None of the subcontexts are selected
|
|
1639
1639
|
|| (
|
|
1640
|
-
|
|
1640
|
+
// Has subcontexts
|
|
1641
|
+
typeof contextFilterState[log.context] !== 'boolean'
|
|
1642
|
+
// None of the subcontexts are selected
|
|
1643
|
+
&& Object.values(contextFilterState[log.context] ?? {})
|
|
1641
1644
|
.every((isSelected) => {
|
|
1642
1645
|
return !isSelected;
|
|
1643
1646
|
})
|