mftsccs-browser 2.0.12-beta → 2.0.13-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.
@@ -13479,6 +13479,9 @@ function FindConceptsFromConnections() {
13479
13479
  if (!ConceptList.includes(connectionList[i].toTheConceptId)) {
13480
13480
  ConceptList.push(connectionList[i].toTheConceptId);
13481
13481
  }
13482
+ if (!ConceptList.includes(connectionList[i].typeId)) {
13483
+ ConceptList.push(connectionList[i].typeId);
13484
+ }
13482
13485
  }
13483
13486
  yield (0,_Api_GetConceptBulk__WEBPACK_IMPORTED_MODULE_0__.GetConceptBulk)(ConceptList);
13484
13487
  }
@@ -14800,6 +14803,7 @@ function GetConnectionDataPrefetch(connectionIds) {
14800
14803
  for (let j = 0; j < connectionsAll.length; j++) {
14801
14804
  prefetchConcepts.push(connectionsAll[j].ofTheConceptId);
14802
14805
  prefetchConcepts.push(connectionsAll[j].toTheConceptId);
14806
+ prefetchConcepts.push(connectionsAll[j].typeId);
14803
14807
  }
14804
14808
  yield (0,_app__WEBPACK_IMPORTED_MODULE_2__.GetConceptBulk)(prefetchConcepts);
14805
14809
  return connectionsAll;