footprint-explainable-ui 0.7.4 → 0.7.5
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/flowchart.cjs +1 -1
- package/dist/flowchart.cjs.map +1 -1
- package/dist/flowchart.js +1 -1
- package/dist/flowchart.js.map +1 -1
- package/package.json +1 -1
package/dist/flowchart.cjs
CHANGED
|
@@ -709,7 +709,7 @@ var DEFAULT_COLORS = {
|
|
|
709
709
|
var Y_STEP = 100;
|
|
710
710
|
var X_SPREAD = 200;
|
|
711
711
|
function nid(n) {
|
|
712
|
-
return n.
|
|
712
|
+
return n.id || n.name || `spec-${Math.random()}`;
|
|
713
713
|
}
|
|
714
714
|
function registerNode(state, node) {
|
|
715
715
|
if (node.id && node.name) {
|