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

Fix #343 - empty field now updates model with undefined

parent 36ba6c20
No related branches found
No related tags found
No related merge requests found
......@@ -244,8 +244,13 @@ export abstract class GenericInputComponent implements OnChanges {
* met à jour le modèle d'après la saisie
*/
public updateModelFromUI() {
if (this.validateUI()) {
this.setAndValidateModel(this, +this._uiValue); // cast UI value to Number
const valid = this.validateUI();
if (valid || this._uiValue === "") {
let val: number; // = undefined
if (valid) {
val = +this._uiValue; // cast UI value to Number
}
this.setAndValidateModel(this, val);
}
}
......
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