looks like you're using the disabled attribute with a reactive form directive. code example
Example: how to set disabled flag formgroup angular
this.form.controls['name'].disable();
// or
<input formControlName="id" placeholder="ID" [attr.disabled]="true"></input>