buildDetailsForm() { this.DetailsForm = this._fb.group({ incidentDescription: ['', []], controlerSeverity:[2,[]], // hard coded value works createdBy:['',[]] }); }testValue = 2;
buildDetailsForm() { this.DetailsForm = this._fb.group({ incidentDescription: ['', []], controlerSeverity:[this.testValue,[]], // can i not use a variable in place of hard coding for example a number??? as of now this wont work. createdBy:['',[]] }); }