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

Remove debug message

parent b3d96396
No related branches found
No related tags found
No related merge requests found
Pipeline #138203 passed
......@@ -19,10 +19,8 @@ export class FormulaireEspece extends FormulaireFixedVar {
public updateDivingJetCriteriaInputs(supported: DivingJetSupport) {
const fsPABDivingJet = this.getFormulaireNodeById("fs_param_pab_p");
if (fsPABDivingJet !== undefined) {
console.log("> got the fieldset");
for (const e of fsPABDivingJet.allFormElements) {
if (e instanceof NgParameter) {
console.log(">> setting parameter disabled " + e.symbol + " to", supported === DivingJetSupport.NOT_SUPPORTED);
e.disabled = (supported === DivingJetSupport.NOT_SUPPORTED);
}
}
......@@ -33,7 +31,6 @@ export class FormulaireEspece extends FormulaireFixedVar {
public update(sender: IObservable, data: any) {
super.update(sender, data);
console.log("XXX property changed !!", sender.constructor.name, data);
if (data.action === "propertyChange") {
switch (data.name) {
case "divingJetSupported":
......
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