修复编排遍历数组错误设置元素的BUG

This commit is contained in:
fofolee 2025-02-25 20:02:26 +08:00
parent 23c5cb77af
commit 775132df8f

View File

@ -132,16 +132,16 @@ export const controlCommands = {
config: [ config: [
{ {
name: "indexVar", name: "indexVar",
label: "元素", label: "索引",
component: "ControlInput", component: "ControlInput",
defaultValue: "item", defaultValue: "index",
width: 4, width: 4,
}, },
{ {
name: "indexVar", name: "itemVar",
label: "索引", label: "元素",
component: "ControlInput", component: "ControlInput",
defaultValue: "i", defaultValue: "item",
width: 4, width: 4,
}, },
{ {