It looks like you're using the disabled attribute with a reactive form directive. If you set disabled to true when you set up this control in your component class 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>