tnx-shared 5.1.211 → 5.1.212
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/bundles/tnx-shared.umd.js +4 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/components/statemachines/statemachines-designer/statemachines-designer.component.d.ts.map +1 -1
- package/esm2015/components/statemachines/statemachines-designer/statemachines-designer.component.js +5 -1
- package/fesm2015/tnx-shared.js +4 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
|
@@ -44868,6 +44868,10 @@
|
|
|
44868
44868
|
try {
|
|
44869
44869
|
for (var _f = __values(data.connections), _g = _f.next(); !_g.done; _g = _f.next()) {
|
|
44870
44870
|
var conn = _g.value;
|
|
44871
|
+
// fix openPopup của một số workflow cũ chưa có trường này
|
|
44872
|
+
if (conn.openPopup === null || conn.openPopup === undefined) {
|
|
44873
|
+
conn.openPopup = true;
|
|
44874
|
+
}
|
|
44871
44875
|
var newObj = JSON.parse(JSON.stringify(conn));
|
|
44872
44876
|
newObj.source = mapping[conn.source];
|
|
44873
44877
|
newObj.target = mapping[conn.target];
|