From bf837e187be63497c2396afb31ce64db7d7317f7 Mon Sep 17 00:00:00 2001 From: STEINNI Date: Mon, 13 Apr 2026 07:45:53 +0000 Subject: [PATCH] graflow: cleanup in subflow child params inheritance --- bzGraflow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bzGraflow.js b/bzGraflow.js index 77be0bc..60b6b0a 100644 --- a/bzGraflow.js +++ b/bzGraflow.js @@ -235,7 +235,7 @@ class BZgraflow extends Buildoz{ const childEl = document.createElement('bz-graflow') childEl.isSubflow = true childEl.currentOrientation = this.currentOrientation - const inheritedAttrs = ['orientation', 'gapx', 'gapy', 'tween', 'align', 'tension', 'wiretype', 'edit'] + const inheritedAttrs = ['orientation', 'gapx', 'gapy', 'tween', 'align', 'tension', 'wiretype', 'edit'] // ! Not 'isolated' ! for(const attrName of inheritedAttrs){ if(this.hasAttribute(attrName)) childEl.setAttribute(attrName, this.getAttribute(attrName)) }