I am using Angular Reactive Form as shown below
'storeName': [''],
'statusId': [''],
'storeAddress': this._formBuilder.group({
'address': [''],
'county': [''],
'landmark': [''],
}),
When I submit the form, for empty controls I still get field with empty string.
Is it possible to get the final value object with only those fields which contain some value in it?