In my code, if i click the add_box icon, it will add another input form below so that I could input more values, but this is the problem shown in this link http://g.recordit.co/R0iifhd6Wd.gif
and this is my code
Component.ts
instrumentsData = {
particulars: ''
}
addParticular() {
this.particulars.push('');
}
Component.html
<div class="form-group">
<button (click)="addParticular()" class="button-box"><i class="material-icons">add_box</i></button>
<ul class="form-fields" *ngFor="let particular of particulars">
<li>
<input type="text" name="name" [(ngModel)]="instrumentsData.particular">
</li>
</ul>
</div>