Here is what I currently have:
<div *ngFor="let step of validationSteps; let i = index ">
<input matInput placeholder="SQL Query" name="sqlQuery" [(ngModel)]="validationSteps[i].sqlDetail.query">
</div>
Is there a way to dynamically change the name attribute to "sqlQuery{i}"?