« get me outta code hell

composite: fix input appearance reporting - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2026-03-31 19:15:02 -0300
committer(quasar) nebula <qznebula@protonmail.com>2026-03-31 19:15:02 -0300
commit30b2d8f98749f60ed6abc75d40d5bbbe36132a6b (patch)
treea01c7369ee6063a0ad91b7b69f9aecea020aa138 /src/data
parent3e9d37d42f766f9c32fe23bc73bf595b9488a3c8 (diff)
composite: fix input appearance reporting
Diffstat (limited to 'src/data')
-rw-r--r--src/data/composite.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/composite.js b/src/data/composite.js
index 9f998ec8..a1b6548b 100644
--- a/src/data/composite.js
+++ b/src/data/composite.js
@@ -407,9 +407,9 @@ export function templateCompositeFrom(description) {
         }
       }
 
-      const inputAppearance = name =>
-        (isInputToken(preparedInputs[name])
-          ? `${getInputTokenShape(preparedInputs[name])}() call`
+      const inputAppearance = token =>
+        (isInputToken(token)
+          ? `${getInputTokenShape(token)}() call`
           : `dependency name`);
 
       if (!empty(misplacedInputNames)) {