Display correct selector label for JS Scripting
This commit is contained in:
parent
9746ac3ac6
commit
0d2b9c39e2
|
@ -104,7 +104,10 @@
|
||||||
)
|
)
|
||||||
bindings = bindings.concat(
|
bindings = bindings.concat(
|
||||||
outputs.map(([name, value]) => {
|
outputs.map(([name, value]) => {
|
||||||
const runtime = idx === 0 ? `trigger.${name}` : `steps.${idx}.${name}`
|
const stepsLabel = block.name.toLowerCase().includes("bash")
|
||||||
|
? `steps.${idx}.${name}`
|
||||||
|
: `steps[${idx - 1}].${name}`
|
||||||
|
const runtime = idx === 0 ? `trigger.${name}` : stepsLabel
|
||||||
return {
|
return {
|
||||||
label: runtime,
|
label: runtime,
|
||||||
type: value.type,
|
type: value.type,
|
||||||
|
|
Loading…
Reference in New Issue