I have a form containing tabs with some of the tabs in overflow. When the overflow button is clicked to expose the hidden tabs, it submits the form. Looking at the DOM, I can see that the overflow button is not given a type="button", therefore it submits. Suggestions?
Simplified Example:
<form [formGroup]="myForm" (ngSubmit)="onSubmit()">
<button type="button" clrTabLink (click)="tabClicked($event)">General</button>
<ng-template [(clrIfActive)]="generalTabActive">
<clr-tab-content id="content1" *clrIfActive>
<div>Tab content here</div>
</clr-tab-content>
</ng-template>
<clr-tab>
<button type="button" clrTabLink [clrTabLinkInOverflow]="inOverflow" (click)="tabClicked($event)">Overflow Tab Here</button>
<clr-tab-content *clrIfActive>
<div>Overflow tab content here</div>
</clr-tab-content>
</clr-tab>
</form>