Angular Form onSubmit() is called by other button
I am doing an Angular 12 Material App. I have a simple Form like this <form [formGroup]="form" class="normal-form" (ngSubmit)="onSubmit()"> <mat-grid-list cols="2" rowHeight="300px"> <mat-grid-tile> <div class="controles-container"> <input type="hidden" formControlName="Id"> <mat-label><strong>Active</strong></mat-label> <mat-slide-toggle formControlName="IsActive" [checked]="checked"> </mat-slide-toggle> <textarea matInput hidden></textarea> <mat-form-field> <input formControlName="Name" matInput placeholder=" Notification Name" > <mat-error>This field is mandatory</mat-error> </mat-form-field> <mat-form-field> <mat-select formControlName="ProcessorName" placeholder="Processor Name"> <ng-container… Read More Angular Form onSubmit() is called by other button