@flowgram.ai/free-auto-layout-plugin 1.0.7 → 1.0.8

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/index.js CHANGED
@@ -2195,7 +2195,7 @@ var LayoutStore = class {
2195
2195
  if (!from || !to || edge.vertical) {
2196
2196
  return;
2197
2197
  }
2198
- const id = `virtual_${groupId}_${to}`;
2198
+ const id = `virtual_${groupId}_from_${from}_to_${to}`;
2199
2199
  const layoutEdge = {
2200
2200
  id,
2201
2201
  entity: edge,
@@ -2214,7 +2214,7 @@ var LayoutStore = class {
2214
2214
  if (!from || !to || edge.vertical) {
2215
2215
  return;
2216
2216
  }
2217
- const id = `virtual_${groupId}_${from}`;
2217
+ const id = `virtual_${groupId}_from_${from}_to_${to}`;
2218
2218
  const layoutEdge = {
2219
2219
  id,
2220
2220
  entity: edge,