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 5a06759 commit df7b8c6Copy full SHA for df7b8c6
src/Common/Common.service.ts
@@ -270,6 +270,7 @@ export const parseRuntimeParams = (response: RuntimeParamsAPIResponseType): Runt
270
const runtimeParams = (response?.runtimePluginVariables ?? []).map<RuntimePluginVariables>((variable) => ({
271
...variable,
272
defaultValue: variable.value,
273
+ stepVariableId: variable.stepVariableId || Math.floor(new Date().valueOf() * Math.random())
274
}))
275
276
runtimeParams.push(...envVariables)
0 commit comments