You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When setting Type="password", MatTextField can be autocomplete by browser but shouldn't.
@Not working correctly: Should not display autocomplete data@
<MatTextField InputAttributes="InputAttributes" Type="password" @bind-Value="Value">
@Working correctly: Should not display autocomplete data@
<MatTextField InputAttributes="InputAttributes" @bind-Value="Value">
System info
MatBlazor version = 2.8.0
Describe the bug
When setting Type="password", MatTextField can be autocomplete by browser but shouldn't.
@Not working correctly: Should not display autocomplete data@
<MatTextField InputAttributes="InputAttributes" Type="password" @bind-Value="Value">
@Working correctly: Should not display autocomplete data@
<MatTextField InputAttributes="InputAttributes" @bind-Value="Value">
@code {
private IDictionary<string, object> InputAttributes { get; set; }
private string Value { get; set; }
}
Expected behavior
When setting autocomplete to "off" and have type to "password", shouldn't display any autocomplete data.
Behaviour should be like first screen shot but without displaying autofill data.
Screenshots
When type is not specified:
When type is set to password:
Thank you for taking this unexpected behaviour in consideration :)
Jonatan
The text was updated successfully, but these errors were encountered: