When there is an ion-select in an ion-item, (tap) on a button that is in the same ion-item does not work.
For example:
<ion-item>
<button ion-button item-start (tap)="doSomething()" icon-only clear>
<ion-icon name="information-circle"></ion-icon>
</button>
<ion-label>Some Label for a Select</ion-label>
<ion-select [(ngModel)]="someProperty">
<ion-option>
Option 1
</ion-option>
<ion-option>
Option 2
</ion-option>
</ion-select>
</ion-item>
When tapping the button, it actually triggers the Select Option Dialog.
Does anyone know how to work around this?