mftsccs-browser 3.2.14-beta → 3.2.16-beta

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.
@@ -10569,9 +10569,11 @@ class TypeNode {
10569
10569
  }
10570
10570
  else {
10571
10571
  // If key already exists, insert unique value into the set
10572
- console.log("this is type dispatch already exist", key);
10573
- (0,_app__WEBPACK_IMPORTED_MODULE_0__.dispatchIdEvent)(key, { detail: value });
10574
- node.value.push(value);
10572
+ if (!node.value.includes(value)) {
10573
+ (0,_app__WEBPACK_IMPORTED_MODULE_0__.dispatchIdEvent)(key, { detail: value });
10574
+ console.log("this is type dispatch already exist", key);
10575
+ node.value.push(value);
10576
+ }
10575
10577
  return node;
10576
10578
  }
10577
10579
  // Step 2: Update height of this ancestor node