Skip to content
Snippets Groups Projects
Commit d268e9f4 authored by Mathias Chouet's avatar Mathias Chouet Committed by mathias.chouet
Browse files

Remove debug message

parent 7df3011f
No related branches found
No related tags found
No related merge requests found
......@@ -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