Ok, então talvez isso não esteja claro. Obtenha este formulário:
<form (ngSubmit)="submit()" #crisisForm="ngForm">
<input type="text" name="name" [(ngModel)]="crisis.name">
<button type="submit">Submit</button>
<button type="button" (click)="preview()">Preview</button>
<button type="reset" (click)="reset()">Reset</button>
</form>
Por que todos os botões acionam a submit()
função? E como evitar isso?