()
| 114 | |
| 115 | // Helper function to get config data |
| 116 | const getConfigData = () => { |
| 117 | return hasArrayConfig() |
| 118 | ? data.inputs[parentParamForArray.name][arrayIndex][`${inputParam.name}Config`] |
| 119 | : data.inputs[`${inputParam.name}Config`] |
| 120 | } |
| 121 | |
| 122 | // Update component inputs based on configuration |
| 123 | if (hasArrayConfig() || data.inputs[`${inputParam.name}Config`]) { |
no test coverage detected