Skip to content

Commit

Permalink
Merge pull request #696 from ksprabin/EMCRI-986
Browse files Browse the repository at this point in the history
EMCRI-986
  • Loading branch information
ChrisHoban authored Nov 7, 2024
2 parents d68021d + c1bb5ca commit 3dbcbdf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export class DFAProjectMainComponent
this.dfaProjectMainDataService.recoveryPlan.repairWorkDetails = this.form.get('repairWorkDetails').value;
this.dfaProjectMainDataService.recoveryPlan.repairDamagedInfrastructure = this.form.get('repairDamagedInfrastructure').value;
this.dfaProjectMainDataService.recoveryPlan.estimatedCompletionDate = this.form.get('estimatedCompletionDate').value;
this.dfaProjectMainDataService.recoveryPlan.estimateCostIncludingTax = this.form.get('estimateCostIncludingTax').value;
this.dfaProjectMainDataService.recoveryPlan.estimateCostIncludingTax = !this.form.get('estimateCostIncludingTax').value ? null : this.form.get('estimateCostIncludingTax').value;

break;
default:
Expand Down

0 comments on commit 3dbcbdf

Please sign in to comment.