mat-autocomplete not binding correctly
up vote 2 down vote favorite I'm attempting to use two matInput fields that each bind with separate mat-autocomplete panels. Following the steps here, I'm able to get one to work fine, but I'm having difficulties with two input fields and autocomplete panels. Here's my html: <form> <mat-form-field> <input matInput [matAutocomplete]="first" [formControl]="myControl"> <mat-autocomplete #first="matAutocomplete"> <mat-option *ngFor="let option of filteredOptions1 | async" [value]="option"> option </mat-option> </mat-autocomplete> </mat-form-field> <mat-form-field> <input matInput [matAutocomplete]="second" [formControl]="otherControl"> <mat-autocomplete #second="matAutocomplete"> <mat-option *ngFor="let option of filteredOptions2 | async" [value]="option"> option </mat-option...