-
-
Notifications
You must be signed in to change notification settings - Fork 7
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, check_array uses an ID and concatnates its items into a string when executing commands.
{
"command": "echo options:%flags%",
"components": {
"type": "check_array",
"label": "options",
"id": "flags"
"items": [
{
"label": "flag1",
"value": " -f1"
},
{
"label": "flag2",
"value": " -f2"
}
]
}
}It would be great if you can set an id for each item.
{
"command": "echo options:%flag1%%flag2%",
"components": {
"type": "check_array",
"label": "options",
"items": [
{
"label": "flag1",
"value": " -f1"
"id": "flag1"
},
{
"label": "flag2",
"value": " -f2"
"id": "flag1"
}
]
}
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request