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
bug(MatAutocomplete): when using single mat-autocomplete with multiple inputs, panel does not open in some circumstances and displays incorrect option as selected #28362
The autocomplete panel for the "Number 1" input is now open.
Actual Behavior
The autocomplete panel was visible for a brief moment, and then disappeared.
In particular, the panel still exists and is clickable, but has opacity: 0. This style appears to have been set by the animation of the panel that has just been closed.
Note that:
The bug cannot be observed, if user does not click, but uses Tab to navigate between the <input> fields.
The panel works correctly in Angular Material 17, if every input has its own <mat-autocomplete> defined. Demo.
Using a single <mat-autocomplete> for multiple <input>s used to work in Angular Material 14.2.7. Demo.