diff --git a/lib/core/src/lib/form/components/widgets/core/form-field.model.ts b/lib/core/src/lib/form/components/widgets/core/form-field.model.ts index aa4b2a5ad4..d3a7f60aec 100644 --- a/lib/core/src/lib/form/components/widgets/core/form-field.model.ts +++ b/lib/core/src/lib/form/components/widgets/core/form-field.model.ts @@ -445,7 +445,7 @@ export class FormFieldModel extends FormWidgetModel { const matchingOption: FormFieldOption = this.options.find((opt) => opt.id === this.value.id); - this.form.values[this.id] = matchingOption || null; + this.form.values[this.id] = matchingOption; } break; }