Anyone knows how to not close a fab group when a button is clicked? I would like to keep the fab open when I select the action buttons but only close it when I click on the close one
<ion-fab vertical="bottom" horizontal="start" slot="fixed">
<ion-fab-button>
<ion-icon name="apps"></ion-icon>
</ion-fab-button>
<ion-fab-list side="end">
<ion-fab-button color="medium" onClick={() => this.actionNotClose()}>
<ion-icon name="arrow-forward"></ion-icon>
</ion-fab-button>
<ion-fab-button color="medium" onClick={() => this.actionNotClose()}>
<ion-icon name="arrow-back"></ion-icon>
</ion-fab-button>
</ion-fab-list>
</ion-fab>