We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70ea444 commit 2cc62ccCopy full SHA for 2cc62cc
server/node-service/src/services/plugin.ts
@@ -214,7 +214,7 @@ export async function runPluginQuery(
214
215
//forward cookies
216
context.forEach(({ key, value }) => {
217
- if (key in dataSourceConfig.dynamicParamsConfig) {
+ if (dataSourceConfig.dynamicParamsConfig && key in dataSourceConfig.dynamicParamsConfig) {
218
const valueKey = `${key}.value`;
219
dataSourceConfig.dynamicParamsConfig[valueKey] = value[0].value
220
}
0 commit comments