Skip to content
Snippets Groups Projects
Commit fe7fb101 authored by mathias.chouet's avatar mathias.chouet
Browse files

Fix bug in Cloisons related method allParamsAreFixed()

parent 90d196e9
No related branches found
No related tags found
No related merge requests found
......@@ -515,7 +515,14 @@ export class GenericCalculatorComponent implements OnInit, DoCheck, AfterViewChe
private allParamsAreFixed() {
let ret = true;
for (const p of this._formulaire.currentNub.parameterIterator) {
ret = ret && (! p.hasMultipleValues);
if (p.valueMode === ParamValueMode.LINK) {
ret = ret && (! p.hasMultipleValues);
} else {
// avoid calling hasMultipleValues here, because changing parameter mode in GUI
// switches valueMode before setting min/max/step or valuesList, and iterator
// checker fails to count values that do not exist yet
ret = ret && (! [ ParamValueMode.LISTE, ParamValueMode.MINMAX ].includes(p.valueMode));
}
}
return ret;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment