Требуется событие для возврата e.target.value = 'NEW' вместо '1: NEW'
App.component. html
<div class="form-group">
<label class="label">Status</label>
<select (change)="changeStatus($event)" class="select-control form-control"
formControlName="status">
<option *ngFor="let item of statusOptions" [ngValue]="item">{{item}}</option>
</select>
</div>
App.component.ts
statusOptions = ['NEW','PENDING','DENIED','APPROVED', 'ACTIVE', 'DEACTIVED'];
changeStatus(e) {
this.clientRegForm.get('status').setValue(e.target.value, {
onlySelf: true
})
this.val = this.clientRegForm.get('status').value;
// getting val ='1:NEW' but want to get val='NEW'
}