Chrome autocomplete lock inputs like they are not clickable

I was facing the same issue in Angular and found a workaround for this scenario, resetting the input field’s value on input click seems to fix the locking issue for me.

HTML:

<input (click)="unfreezeInput($event)">

TS:

unfreezeInput(el) {
    // setting input value again makes it editable
    el.target.value = el.target.value;
}

Leave a Comment