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 2b4b081 commit 277778dCopy full SHA for 277778d
src/utils/SolutionsUtils.js
@@ -153,6 +153,13 @@ const patchIncompatibleValuesInSolution = (solution) => {
153
);
154
parameter.options.canChangeRowsNumber = false;
155
}
156
+ } else if (parameter.varType === 'int' || parameter.varType === 'number') {
157
+ if (parameter.defaultValue != null && parameter.options?.dynamicValues != null) {
158
+ console.warn(
159
+ `In solution configuration, the parameter "${parameter.id}" is defined with ` +
160
+ 'both options "defaultValue" and "options.dynamicValues": the dynamic query may be ignored.'
161
+ );
162
+ }
163
164
});
165
};
0 commit comments