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.
1 parent 298b553 commit cf734aeCopy full SHA for cf734ae
src/store/index.ts
@@ -161,7 +161,11 @@ export class NodeStore {
161
setContext(obj?: mendix.lib.MxObject): void {
162
this.debug("Store: setContext", obj);
163
164
- if (this.contextObject === null || !obj || (this.contextObject && obj && this.contextObject.getGuid() !== obj.getGuid())) {
+ if (
165
+ this.contextObject === null ||
166
+ !obj ||
167
+ (this.contextObject && obj && this.contextObject.getGuid() !== obj.getGuid())
168
+ ) {
169
this.resetState = true;
170
this.calculateInitialParents = true;
171
this.rowObjects = [];
0 commit comments