We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60cb632 commit 0f1f6b5Copy full SHA for 0f1f6b5
src/plugins/condition/ConditionManager.js
@@ -97,8 +97,8 @@ export default class ConditionManager extends EventEmitter {
97
}
98
99
this.telemetryCollections[keyString].destroy();
100
- this.telemetryCollections[keyString] = null;
101
- this.telemetryObjects[keyString] = null;
+ delete this.telemetryCollections[keyString];
+ delete this.telemetryObjects[keyString];
102
this.removeConditionTelemetryObjects();
103
104
//force re-computation of condition set result as we might be in a state where
0 commit comments