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

Oops fix #459 (for real)

parent 1f5b7cb6
No related branches found
No related tags found
No related merge requests found
Pipeline #138373 passed
......@@ -161,7 +161,9 @@ export abstract class FormulaireNode implements IObservable {
}
}
// restore original calculated param
calcP.setCalculated();
if (calcP !== undefined) {
calcP.setCalculated();
}
}
/**
......
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