script-server
script-server copied to clipboard
Multiple include with variables: either all or non files are included
If you have a list with incuded configs, some of which require certain parameters and others don't, Script Server is not including anything untill required parameters from every element is defined.
Steps to reproduce:
- Define a script with param1 text, without defaults
- Define 2 files to include: include2.json (with param2) and include3.json (with param3)
- add the following
includeconfig:["include2.json", "include${param1}.json"] - Load the script on UI
Actual result: only param1 is shown Expected result: param1 + param2 are shown.