Within my ion-list, each ion-item contains a link to navigate to the next page. When tapping on an ion-item, it successfully navigates to the detail page.
The problem arises when there is a button inside each ion-item that triggers an action. Tapping on this button results in both the button's event and the ion-item's event being triggered simultaneously due to having two touch targets.
The ng-click event is used for the button inside the ion-item, while the ion-item is activated by the href attribute.
I am looking for a solution where I can tap on the button without triggering the ion-item's href event at the same time.