mftsccs-browser 1.1.61-beta → 1.1.62-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.
package/dist/main.bundle.js
CHANGED
|
@@ -16958,7 +16958,9 @@ function FormatFromConnectionsAlteredArrayExternalJustId(connections_1, composit
|
|
|
16958
16958
|
let isComp = compositionData[connections[i].ofTheConceptId];
|
|
16959
16959
|
if (isComp) {
|
|
16960
16960
|
let data = compositionData[connections[i].ofTheConceptId];
|
|
16961
|
-
data
|
|
16961
|
+
if (data) {
|
|
16962
|
+
data["id"] = ofTheConcept.id;
|
|
16963
|
+
}
|
|
16962
16964
|
let reverseCharater = linkerConcept.characterValue + "_reverse";
|
|
16963
16965
|
if (Array.isArray(newData[key][reverseCharater])) {
|
|
16964
16966
|
newData[key][reverseCharater].push(data);
|
|
@@ -17006,7 +17008,9 @@ function FormatFromConnectionsAlteredArrayExternalJustId(connections_1, composit
|
|
|
17006
17008
|
let isComp = compositionData[connections[i].toTheConceptId];
|
|
17007
17009
|
if (isComp) {
|
|
17008
17010
|
let data = compositionData[connections[i].toTheConceptId];
|
|
17009
|
-
data
|
|
17011
|
+
if (data) {
|
|
17012
|
+
data["id"] = toTheConcept.id;
|
|
17013
|
+
}
|
|
17010
17014
|
if (Array.isArray(newData[key][linkerConcept.characterValue])) {
|
|
17011
17015
|
newData[key][linkerConcept.characterValue].push(data);
|
|
17012
17016
|
}
|
|
@@ -17033,7 +17037,9 @@ function FormatFromConnectionsAlteredArrayExternalJustId(connections_1, composit
|
|
|
17033
17037
|
let mymainData = {};
|
|
17034
17038
|
console.log("this is the main compositions DATA", compositionData[mainComposition[i]]);
|
|
17035
17039
|
mymainData = compositionData[mainComposition[i]];
|
|
17036
|
-
mymainData
|
|
17040
|
+
if (mymainData) {
|
|
17041
|
+
mymainData["id"] = mainComposition[i];
|
|
17042
|
+
}
|
|
17037
17043
|
mainData.push(mymainData);
|
|
17038
17044
|
}
|
|
17039
17045
|
return mainData;
|