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

Fix #447 - NaN in param "a" when generating simulation from chevron PAR

parent e9c25833
No related branches found
No related tags found
1 merge request!82Resolve "Ajout de la fonctionnalité "Respect des critères""
Pipeline #138313 passed
......@@ -949,7 +949,7 @@ export class GenericCalculatorComponent implements OnInit, DoCheck, AfterViewChe
ZD1: pres.ZD1,
ZR2: pres.ZR2,
ZD2: pres.ZD2,
a: pres.a
a: pcal.a.hasMultipleValues ? pcal.a.getInferredValuesList(s)[i] : pcal.a.V,
});
}
});
......@@ -969,7 +969,7 @@ export class GenericCalculatorComponent implements OnInit, DoCheck, AfterViewChe
ZD1: pres.ZD1,
ZR2: pres.ZR2,
ZD2: pres.ZD2,
a: pres.a
a: pcal.a.V
});
}
}
......
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