We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
isGroup: false
1 parent bb8ba48 commit 336719aCopy full SHA for 336719a
src/classes/Feature.js
@@ -23,7 +23,7 @@ export default class Feature extends AbstractFeature {
23
24
forceTotal = (
25
this.def.forceTotal
26
- ?? (this.def.isGroup || this.def.children ? false : undefined)
+ ?? (this.def.isGroup !== false && (this.def.isGroup || this.def.children) ? false : undefined)
27
?? this.constructor.forceTotal
28
) || undefined; // false → undefined
29
static forceTotal = 1;
0 commit comments