1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00

Change to startsWith JS. Remove index decrement.

This commit is contained in:
Mel O'Hagan 2022-04-13 13:27:17 +01:00
parent 915b7bc040
commit 2694b32ac5

View file

@ -104,9 +104,9 @@
)
bindings = bindings.concat(
outputs.map(([name, value]) => {
const stepsLabel = block.name.toLowerCase().includes("bash")
? `steps.${idx}.${name}`
: `steps[${idx - 1}].${name}`
const stepsLabel = block.name.startsWith("JS")
? `steps[${idx}].${name}`
: `steps.${idx}.${name}`
const runtime = idx === 0 ? `trigger.${name}` : stepsLabel
return {
label: runtime,