Skip to content
Snippets Groups Projects
Commit f3d77107 authored by AUBRY JEAN-PASCAL's avatar AUBRY JEAN-PASCAL
Browse files

fix: update model validity when value mode change

Refs #665
parent 228156af
No related branches found
No related tags found
2 merge requests!275Release v4.19.0,!262Resolve "Validity of field is not transmetted to Calculate button every time"
Pipeline #183726 passed
......@@ -150,6 +150,11 @@ export class NgParamInputComponent extends GenericInputComponentDirective implem
// changement de valueMode du paramètre ou de valeur à laquelle il est lié
case "valueModeChange":
if (this._tmp !== data["value"]) {
this._tmp = data["value"];
this.updateAndValidateUI();
this.updateModelFromUI()
}
case "valueLinkChange":
if (this._tmp !== data["value"]) {
this._tmp = data["value"];
......
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