Skip to content
Snippets Groups Projects
Commit 5e95331e authored by Mathias Chouet's avatar Mathias Chouet
Browse files

Remove debug message

parent 9020ca32
No related branches found
No related tags found
No related merge requests found
Pipeline #137880 passed
......@@ -34,9 +34,7 @@ export class FormulaireVerificateur extends FormulaireFixedVar {
} else if (sender.id === "select_species_list" && data.action === "select") {
// update Verificateur property: Species list (string[])
const caca = data.value.map((v: any) => v.value);
console.log("FormVerificateur.update species_list", caca);
(this._currentNub as Verificateur).speciesList = caca;
(this._currentNub as Verificateur).speciesList = data.value.map((v: any) => v.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