Why is Chrome Generating Password Suggestions in an Editable Dropdown with type='text' and autocomplete='off'?

41 views Asked by At

I'm using an editable Dropdown element from PrimeVue, and I've noticed some unusual behavior in Chrome when I focus on the input field. It suggests a generated password, even though the type attribute is set to "text" and autocomplete is turned off. What might be causing this issue?

<input
    type="text" class="p-dropdown-label p-inputtext" tabindex="0"
    autocomplete="off" role="combobox" aria-haspopup="listbox"
    aria-expanded="false" aria-controls="pv_id_13_list" data-pc-section="input"
    aria-autocomplete="list"
>

enter image description here

Edit

My question is a duplicate of : How can i disable chrome "Use Suggested Password" on my type="number" Input?

0

There are 0 answers