@processmaker/modeler 1.42.0 → 1.42.1
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/modeler.common.js +17 -16
- package/dist/modeler.common.js.map +1 -1
- package/dist/modeler.umd.js +17 -16
- package/dist/modeler.umd.js.map +1 -1
- package/dist/modeler.umd.min.js +3 -3
- package/dist/modeler.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/components/modeler/Selection.vue +2 -2
package/package.json
CHANGED
|
@@ -632,7 +632,7 @@ export default {
|
|
|
632
632
|
*/
|
|
633
633
|
getConnectedLinkProperties(links) {
|
|
634
634
|
let changed = [];
|
|
635
|
-
links
|
|
635
|
+
links?.forEach((linkView) => {
|
|
636
636
|
const vertices = linkView.model.component.shape.vertices();
|
|
637
637
|
if (vertices?.length) {
|
|
638
638
|
const waypoint = [];
|
|
@@ -719,7 +719,7 @@ export default {
|
|
|
719
719
|
* Selector will update the waypoints of the related flows
|
|
720
720
|
*/
|
|
721
721
|
updateFlowsWaypoint(){
|
|
722
|
-
this.connectedLinks
|
|
722
|
+
this.connectedLinks?.forEach((link)=> {
|
|
723
723
|
if (link.model.component && link.model.get('type') === 'standard.Link'){
|
|
724
724
|
const start = link.sourceAnchor;
|
|
725
725
|
const end = link.targetAnchor;
|